GET
/
v1
/
teams
/
{team_id}
/
tickets
/
{ticket_id}
/
messages
List Ticket Messages
curl --request GET \
  --url https://public.api.serval.com/v1/teams/{team_id}/tickets/{ticket_id}/messages \
  --header 'Authorization: Bearer <token>'
{
  "messages": [
    {
      "id": "<string>",
      "user": {
        "id": "<string>",
        "email": "<string>"
      },
      "authorRole": "USER_ROLE",
      "content": "<string>",
      "createdAt": "1s"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

team_id
string
required

The ID of the Serval team that the ticket belongs to.

ticket_id
string
required

The ID of the Serval ticket to get messages for.

Response

200
application/json

Success

The response is of type object.