ResourcesTickets
Reply to ticket
This endpoint allows you to add a reply to a given ticket.
This endpoint allows you to add a reply to a given ticket.
Authorization
bearerAuth AuthorizationBearer <token>
Provide your SellApp API key as a bearer token.
In: header
Path Parameters
ticket*integer
The ticket path parameter.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
content*string
Response Body
application/json
curl -X POST "https://sell.app/api/v1/tickets/0/messages" \ -H "Content-Type: application/json" \ -d '{ "content": "Hey thanks for reaching out but we do not accept doge." }'{
"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
}
}List all ticket messages GET
This endpoint allows you to retrieve a paginated list of all your ticket messages within a specific ticket received. By default, a maximum of fifteen ticket messages are shown per page.
Retrieve specific ticket message GET
This endpoint allows you to retrieve a specific ticket message by providing the unique identifier.