Infobip
This integration lets you send targeted messages using the cohorts you create in Amplitude.
Set up the integration
Infobip setup
- Navigate to the Infobip Portal, click Project Settings, and select API Keys.
- Generate a new key and add a description. Copy the key.
Amplitude setup
- In Amplitude Data, click Catalog and select the Destinations tab.
- In the Cohort section, click Infobip.
- Enter a name and Infobip API Key.
- Save the destination.
Statuses
Create a new list
URL: https://api.infobip.com/saas/amplitude/1/lists
Status codes
json
{
"listId": 2568
}
Add people to list
URL: https://api.infobip.com/saas/amplitude/1/lists/%257BlistId%257D/add
- If no errors occur, the modified and created counters show the number of IDs.
- If one or more IDs can't be added to a list, the errors section contains the total counter and arrays of IDs grouped by error type.
json
{
"modifiedCount": 0,
"createdCount": 3,
"errors": {
"count": 1,
"failed": {
"VALIDATION_ERROR": ["invalid_mail.com"]
}
}
}
Remove people from list
URL: https://api.infobip.com/saas/amplitude/1/lists/%257BlistId%257D/remove
json
{}
Was this helpful?