Link Thread External Ticket
curl --request POST \
--url https://{tenant_id}.api.useago.com/api/v1/conversations/{thread_id}/external-ticket \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"ticketing_system": "<string>",
"external_id": "<string>"
}
'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/conversations/{thread_id}/external-ticket"
payload = {
"ticketing_system": "<string>",
"external_id": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({ticketing_system: '<string>', external_id: '<string>'})
};
fetch('https://{tenant_id}.api.useago.com/api/v1/conversations/{thread_id}/external-ticket', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ticketing_system": "<string>",
"external_id": "<string>",
"conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"object": "ticket"
}Conversations
Link Thread External Ticket
Attach an external ticket reference authorized by your backend.
Requires conversations:write. The integration must verify the association before calling: this endpoint needs no end-user JWT and makes no external API calls. Further updates use the configured connector’s standard sync.
POST
/
api
/
v1
/
conversations
/
{thread_id}
/
external-ticket
Link Thread External Ticket
curl --request POST \
--url https://{tenant_id}.api.useago.com/api/v1/conversations/{thread_id}/external-ticket \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"ticketing_system": "<string>",
"external_id": "<string>"
}
'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/conversations/{thread_id}/external-ticket"
payload = {
"ticketing_system": "<string>",
"external_id": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({ticketing_system: '<string>', external_id: '<string>'})
};
fetch('https://{tenant_id}.api.useago.com/api/v1/conversations/{thread_id}/external-ticket', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ticketing_system": "<string>",
"external_id": "<string>",
"conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"object": "ticket"
}Authorizations
Path Parameters
Body
application/json
