Skip to main content
POST
/
contact-lists
Create a contact list
curl --request POST \
  --url https://api.reply.io/v3/contact-lists \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "<string>",
  "shared": false
}
'
{
  "id": 123,
  "name": "<string>",
  "shared": true
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Body

application/json
name
string
required

Contact list name

shared
boolean
default:false

Whether the contact list should be shared

Response

Contact list created successfully

Contact list entity

id
integer
required

Unique identifier of the contact list

name
string
required

Contact list name

shared
boolean
required

Whether the contact list is shared across the team