Update a call-back entry
PATCH /calldown/{id}
Updates allowed fields on a call-back entry owned by the current App Connect user. status, scheduledAt, lastCallAt, contactId, and contactType are persisted. Current browser clients also send contactName, phoneNumber, and note, but the current data model does not retain those fields.
Operation ID: patchCallDown
Authorization: BEARER or API key
Parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
id |
path | string | Yes | Server-generated call-back entry identifier. |
Request body
Persisted callback fields to update. At least one handler-supported field is required.
Required: Yes
Content type: application/json
Schema: CallDownPatchRequest
{
"contactId": "string",
"contactType": "string",
"status": "string",
"scheduledAt": "2026-01-01T00:00:00Z",
"lastCallAt": "2026-01-01T00:00:00Z",
"contactName": "string",
"phoneNumber": "string",
"note": "string"
}
Responses
| Status | Description | Body |
|---|---|---|
200 |
The owned call-back entry was updated. | CallDownMutationResponse |
400 |
Bad request, missing authentication, or connector error. | ErrorResponse, string |