Interaction
Create a resolution for an interaction
Manually attribute (positive) or suppress (negative) an interaction for a contact. A positive resolution attaches the interaction to the contact. A negative resolution suppresses an incorrect automatic match.
post/interactions/{id}/resolutions
Path parameters
idstring uuid required
Example:550e8400-e29b-41d4-a716-446655440000
The ID of the interaction. The ID is returned from GET /interactions response.
Request body
Example request
{
"contact_id": "7c4d2f3a-1b8e-4f5c-9a6d-3e2f1a0b4c5d",
"resolution_type": "positive",
"resolved_by_type": "agent",
"resolved_by_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}Response
Resolution created successfully.
Example response
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"customer_id": "7c4d2f3a-1b8e-4f5c-9a6d-3e2f1a0b4c5d",
"contact_id": "550e8400-e29b-41d4-a716-446655440000",
"interaction_id": "c3d4e5f6-a7b8-9012-cdef-345678901234",
"resolution_type": "positive",
"resolved_by_type": "agent",
"resolved_by_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"tm_create": "2026-06-01T10:00:00.000000Z",
"tm_update": "2026-06-01T10:00:00.000000Z",
"tm_delete": "2026-06-02T08:00:00.000000Z"
}