On this page

Infobip

Infobip is a global omnichannel engagement platform that powers messaging channels, tools, and solutions for customer engagement, authentication, and security.

This integration lets you send targeted messages using the cohorts you create in Amplitude.

Set up the integration

Infobip setup

  1. Navigate to the Infobip Portal, click Project Settings, and select API Keys.
  2. Generate a new key and add a description. Copy the key.

Amplitude setup

  1. In Amplitude Data, click Catalog and select the Destinations tab.
  2. In the Cohort section, click Infobip.
  3. Enter a name and Infobip API Key.
  4. 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?