Send server-to-server GET requests to:
https://track.sweepstakesranking.com/postback
Success response: HTTP 200 with body OK.
| Param | Type | Required | Notes |
|---|---|---|---|
click_id | string | Yes | Exact value we send as clickID on the click redirect. (clickID also accepted.) |
status | enum | Yes | Use the correct status for the event you’re posting. |
| Code | Body | Meaning / Action |
|---|---|---|
200 | OK | Accepted. Safe to stop retrying. Duplicates with same txid are OK and idempotent. |
400 | Click ID is required | Add click_id and retry. |
400 | Click ID does not exist | Ensure you send the exact value we gave you. |
400 | missing status ... | Add a valid status and retry. |
5xx | (server error) | Temporary. Retry with exponential backoff (1s, 3s, 10s; up to 5 attempts). |