ResourcesTickets

Retrieve specific ticket message

This endpoint allows you to retrieve a specific ticket message by providing the unique identifier.

This endpoint allows you to retrieve a specific ticket message by providing the unique identifier. Refer to the list to see which properties are included with ticket message objects.

GET
/v1/tickets/{ticket}/messages/{message}

Authorization

bearerAuth
AuthorizationBearer <token>

Provide your SellApp API key as a bearer token.

In: header

Path Parameters

ticket*integer

The ticket path parameter.

message*integer

The message path parameter.

Response Body

application/json

curl -X GET "https://sell.app/api/v1/tickets/0/messages/0"
{
  "data": {
    "id": 2,
    "author": "STORE",
    "sender": null,
    "content": "Hey thanks for reaching out but we do not accept doge.",
    "created_at": "2022-12-12T12:12:12.000000Z",
    "updated_at": "2022-12-12T12:12:12.000000Z",
    "ticket_id": 1
  }
}