Skip to main content
Version: v3

Error Handling

400 errors

Error messageReasonSolution
There were {Number} invalid conversion events. None were processed.The payload doesn't conform to the CAPI v3 validation rules (for example, wrong or missing values in type.tracking_type or metadata). No events were sent.Ensure you're passing valid values for events. If you've migrated from CAPI v2, review the changes to events, such as updates to event_type.tracking_type and event_metadata.
Bad RequestThe maximum allowable events are 1000 events/call.Split your events into multiple calls.

401 errors - Unauthorized

Error messageReasonSolution
No bearer token providedYou’re not passing a bearer token in the request.Double-check that you’re passing tokens properly.
UNAUTHORIZEDYou’re passing an invalid token that cannot be authenticated by Reddit.Create a valid access token before posting conversions.

403 errors - Forbidden

Error messageReasonSolution
You’re not authorized to post conversions to Pixel ID {Pixel ID}.Your account lacks the permission to post conversions for this Pixel.Ensure you’re using an access token with adequate permission and providing the correct Pixel ID.
Missing adsconversions scope to post conversions to Pixel.Your developer app doesn’t have the proper scope for this request.Add adsconversions to your scope.

429 errors - Too many requests

Error messageReasonSolution
Your user agent was automatically ratelimited.Default user agents may lead to throttling and aren’t recommended.Set your requests’ user agent header (user-agent) to a unique and descriptive string.
Too many requests/events within timeframe.The ratelimiting quota has been exhausted for the window.Cache data retrieved locally or store the data in a database to avoid polling the API. If you need to backfill data, consider sending data in batches. Alternatively, set a retry logic and limit the retry frequency by implementing exponential backoff.

500 errors - Internal Server Error

Error messageReasonSolution
The service is currently unavailable. No conversion events were processed.Service is experiencing downtime at the moment.Retry posting conversion events later.