Skip to main content
POST
/
contacts
/
{id}
/
status
Set contact status
curl --request POST \
  --url https://api.reply.io/v3/contacts/{id}/status \
  --header 'X-API-Key: <api-key>'
{
  "message": "Contact status updated to Active"
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

id
integer<int64>
required

ID of the contact whose status is to be set

Query Parameters

status
enum<string>
required

New status for the contact (e.g., Active, Paused)

Available options:
Active,
Paused,
Out of office,
Finished,
Opted out,
Replied,
Bounced,
Called,
To call,
Meeting booked,
Do not contact,
Not interested,
Unresponsive,
Bad contact info,
Interested

Response

Contact status updated successfully

message
string
Example:

"Contact status updated to Active"