SupportWire API
API ReferenceConversations

Assign conversation

Required scope: `conversations:write`, `actor=self`.

POST
/api/oauth/v1/conversations/{conversation_id}/assignee

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth access token, e.g. Authorization: Bearer swot_….

In: header

Path Parameters

conversation_id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/oauth/v1/conversations/string/assignee" \  -H "Content-Type: application/json" \  -d '{    "user_id": "string"  }'
{
  "data": {
    "id": "string",
    "conversation_id": "string",
    "user_id": "string",
    "assignor_id": "string",
    "assigned_at": 0
  }
}