Skip to main content
PUT
/
contacts
/
{list_id}
Update contact list
curl --request PUT \
  --url https://api.kallabot.com/contacts/{list_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "contacts": [
    {
      "phone_number": "<string>",
      "template_variables": {}
    }
  ]
}'
{
  "status": "<string>",
  "message": "<string>",
  "list_id": "<string>",
  "total_contacts": 123,
  "contact_ids": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

list_id
string<uuid>
required

Body

application/json
contacts
object[]
required

Response

Contact list updated

status
string
message
string
list_id
string
total_contacts
integer
contact_ids
string[]