POST
/
tickets
/
share
/
{id}
curl --request POST \
  --url https://core.api.ravennahq.com/api/tickets/share/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "data": {
    "queueId": "<string>"
  }
}'
{
  "id": "<string>",
  "queueId": "<string>",
  "queue": {
    "workspaceId": "<string>",
    "name": "<string>",
    "emoji": "<string>"
  },
  "ticketId": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
data
object
required

Response

200
application/json
Successful response
id
string
required
queueId
string
required
queue
object
required
ticketId
string
required
createdAt
string
required
updatedAt
string
required