curl -X DELETE https://api.open.cx/connect/threads/order_84421/participants/drv_318 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"removed": true,
"lanes": [
{ "id": "customer_merchant", "status": "active" },
{ "id": "customer_courier", "status": "waiting" }
]
}
Connect
Remove a Connect participant
Remove a participant from a thread — courier reassignment being the common case. Access is revoked instantly; lane history stays with the thread.
DELETE
/
connect
/
threads
/
{thread_id}
/
participants
/
{participant_id}
curl -X DELETE https://api.open.cx/connect/threads/order_84421/participants/drv_318 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"removed": true,
"lanes": [
{ "id": "customer_merchant", "status": "active" },
{ "id": "customer_courier", "status": "waiting" }
]
}
Remove a participant. Their tokens are revoked immediately and their apps lose the thread; the lane’s history remains for the other side and for audit. The lane returns to
waiting until a replacement joins.
Path
string
required
Thread ID (
th_…) or your reference.string
required
Participant ID (
prt_…) or their external_id.Response
boolean
Always
true on success.array
Updated lane states.
curl -X DELETE https://api.open.cx/connect/threads/order_84421/participants/drv_318 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"removed": true,
"lanes": [
{ "id": "customer_merchant", "status": "active" },
{ "id": "customer_courier", "status": "waiting" }
]
}
Was this page helpful?