Skip to main content
POST
/
lists
/
{listId}
/
leads
Add leads
curl --request POST \
  --url https://inboxapp.com/api/v1/lists/{listId}/leads \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "platformIds": [
    "<string>"
  ]
}
'
{
  "added": [
    "<string>"
  ],
  "skipped": [
    "<string>"
  ],
  "failed": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.inboxapp.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

listId
string
required

The ID of the list to add leads to.

Pattern: ^[0-9a-z]+$

Body

application/json
platformIds
string[]
required

Array of platform user IDs to add. Maximum 2000 per request.

Required array length: 1 - 2000 elements
Minimum string length: 1
Example:
["44196397", "50393960"]

Response

200 - application/json

OK

added
string[]
required

Platform IDs that were successfully added to the list.

Example:
["44196397"]
skipped
string[]
required

Platform IDs that were already in the list.

Example:
["50393960"]
failed
string[]
required

Platform IDs that could not be resolved (invalid, suspended, or deleted accounts).

Example:
[]