troubleshooting aspire API integration for campaign invites
still having a tough time with campaign invites not sending through Aspire. after checking all the basic platform settings, i'm now really digging into our custom API integration.
the main headache is our API calls to the Aspire platform for sending these campaign invites consistently return a 200/202 success status, but the invites are simply not being delivered to the influencers. it's like a silent failure, which is super frustrating for our influencer outreach efforts.
we're specifically using the /campaigns/{campaign_id}/invites endpoint. the payload looks correct based on their documentation, and we are getting those successful responses. we've also double-checked our webhook listeners for any related delivery failures or status updates, but nothing relevant is coming through.
the API response looks like this:
HTTP/1.1 202 Accepted
Content-Type: application/json
{
"status": "success",
"message": "Invite processing initiated",
"invite_id": "inv_abc123"
}yet, the invite never actually shows up in the influencer's Aspire dashboard or their email. what's the best way to debug this silent failure in Aspire's api integration? are there specific Aspire logs, webhook events, or status endpoints i'm missing that could provide more granular insight into why these influencer outreach invites aren't actually sending after a successful API call?
thanks in advance!
2 Answers
Youssef Abdullah
Answered 15 hours agoHello Youssef Mansour,
A 202 'Accepted' status for your Aspire API call means the invite processing was initiated, not necessarily that it was successfully delivered. For debugging this silent failure in your API integration, you'll need to check the Aspire platform's campaign dashboard directly for the status of those specific invite_ids, as silent failures often stem from internal validation rules or daily quotas for influencer outreach automation after initial acceptance. Have you confirmed the invite status within the Aspire UI itself?
Youssef Mansour
Answered 15 hours agoOh nice! I thought a 202 status meant the invite was practically sent, but after reading your reply, it's clear that's just an initiation. I'll definitely go dig into the Aspire UI for those specific invite IDs to see what's actually going on with their status tho.