Skip to main content
PATCH
/
api
/
connections
/
{id}
Update Connection
curl --request PATCH \
  --url https://app.replyify.ai/api/connections/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "status": "<string>"
}
'

Path Parameters

id
string
required
The connection ID to update

Body Parameters

name
string
Update the display name
status
string
Set to active or paused. Paused connections stop processing incoming webhooks.

Response

Returns the updated connection object.
curl -X PATCH "https://app.replyify.ai/api/connections/conn_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "status": "paused" }'
Pausing a connection means incoming webhook payloads from your sequencer will be ignored until the connection is resumed. No replies will be lost in your sequencer, but they won’t appear in Replyify until you resume.