Skip to content

Get ticket and thread

GET
/v1/support/tickets/{ticketId}
curl --request GET \
--url https://shareout.site/v1/support/tickets/example \
--header 'Authorization: Bearer <token>'
ticketId
required
string

Ticket with messages

Media type application/json
object
success
boolean
ticket
object
id
string
subject
string
status
string
Allowed values: open pending resolved closed
channel
string
Allowed values: ui skill email telegram slack
workspace_id
string
nullable
requester_user_id
string
nullable
requester_email
string format: email
nullable
priority
string
nullable
created_at
string format: date-time
updated_at
string format: date-time
thread
Array<object>
object
id
string
role
string
Allowed values: customer staff system
body
string
created_at
string format: date-time
Example
{
"ticket": {
"status": "open",
"channel": "ui"
},
"thread": [
{
"role": "customer"
}
]
}

Access denied

Media type application/json
object
success
required
boolean
error
required

Human-readable message.

string
code
required

Machine-readable error code.

string
Example
{
"success": false
}

Resource not found

Media type application/json
object
success
required
boolean
error
required

Human-readable message.

string
code
required

Machine-readable error code.

string
Example
{
"success": false
}