Retrieve conversation
curl --request GET \
--url https://woes.dev/api/v1/conversations/{conversationId} \
--header 'Authorization: Bearer <token>'const url = 'https://woes.dev/api/v1/conversations/{conversationId}';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://woes.dev/api/v1/conversations/{conversationId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://woes.dev/api/v1/conversations/{conversationId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"conversation": {
"object": "<string>",
"id": "<string>",
"priority": "<string>",
"subject": "<string>",
"preview": "<string>",
"customer": {
"id": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"company": "<string>",
"identitySource": "<string>"
},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"lastMessageAt": "2023-11-07T05:31:56Z",
"closedAt": "2023-11-07T05:31:56Z"
}
}{
"code": "unauthorized",
"error": "A valid workspace API key is required."
}{
"code": "insufficient_scope",
"error": "This API key is missing the required scope."
}{
"code": "not_found",
"error": "Record not found."
}{
"code": "rate_limited",
"error": "Too many API requests. Slow down and try again shortly."
}{
"code": "internal_error",
"error": "The API request could not be completed."
}Retrieve conversation
Retrieves one workspace-scoped conversation. Cross-workspace ids return 404.
GET
https://woes.dev
/
api
/
v1
/
conversations
/
{conversationId}
Retrieve conversation
curl --request GET \
--url https://woes.dev/api/v1/conversations/{conversationId} \
--header 'Authorization: Bearer <token>'const url = 'https://woes.dev/api/v1/conversations/{conversationId}';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://woes.dev/api/v1/conversations/{conversationId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://woes.dev/api/v1/conversations/{conversationId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"conversation": {
"object": "<string>",
"id": "<string>",
"priority": "<string>",
"subject": "<string>",
"preview": "<string>",
"customer": {
"id": "<string>",
"name": "<string>",
"email": "jsmith@example.com",
"company": "<string>",
"identitySource": "<string>"
},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"lastMessageAt": "2023-11-07T05:31:56Z",
"closedAt": "2023-11-07T05:31:56Z"
}
}{
"code": "unauthorized",
"error": "A valid workspace API key is required."
}{
"code": "insufficient_scope",
"error": "This API key is missing the required scope."
}{
"code": "not_found",
"error": "Record not found."
}{
"code": "rate_limited",
"error": "Too many API requests. Slow down and try again shortly."
}{
"code": "internal_error",
"error": "The API request could not be completed."
}Authorizations
Workspace API key that starts with woesk_. Paste your own key into the docs playground; never expose it in browser code.
Path Parameters
Conversation id.
Response
Conversation found.
Hide child attributes
Hide child attributes
Allowed value:
"conversation"Available options:
api, live-chat, email, discord Available options:
open, waiting, solved Hide child attributes
Hide child attributes
Required string length:
1 - 200Maximum string length:
160Maximum string length:
320Maximum string length:
160Last modified on July 4, 2026
Was this page helpful?
⌘I
