Gets a ticket by the ID in the given store and returns it. Requires the Scopes.ViewTickets permission
Authorizations
Path parameters
storeIdstring · uuidRequired
The ID of the store to get the ticket from
ticketIdstring · uuidRequired
The ID of the ticket to get
Responses
200
The object was successfully returned.
400
The provided form information is not valid, check that the provided data is valid. You can use the 'invalidFields' field to get the list of invalid fields or just use the 'message' field.
401
You are not authorized, check your API key and try again.
403
You are not authorized to access this endpoint, you may be missing an API key scope or be requesting a privileged endpoint.
404
One of the objects referenced by the ID given in the URL or form was not found, check the ID and try again.
get
GET /stores/{storeId}/tickets/{ticketId} HTTP/1.1
Host: api.sellsn.io
Authorization: Bearer JWT
Accept: */*
Closes the given ticket, requires the Scopes.DeleteTickets permission
Authorizations
Path parameters
storeIdstring · uuidRequired
The ID of the store the ticket belongs to
ticketIdstring · uuidRequired
The ID of the ticket to close
Responses
200
The object was successfully deleted.
400
The provided form information is not valid, check that the provided data is valid. You can use the 'invalidFields' field to get the list of invalid fields or just use the 'message' field.
401
You are not authorized, check your API key and try again.
403
You are not authorized to access this endpoint, you may be missing an API key scope or be requesting a privileged endpoint.
404
One of the objects referenced by the ID given in the URL or form was not found, check the ID and try again.
Adds a response/reply to the given ticket, requires the Scopes.UpdateTickets permission
Authorizations
Path parameters
storeIdstring · uuidRequired
The ID of the store the ticket belongs to
ticketIdstring · uuidRequired
The ID of the ticket to add the response to
Body
Form for creating a new ticket response
messagestring · min: 1 · max: 2048Required
The message/response to give in the ticket
Responses
200
The object was successfully created.
400
The provided form information is not valid, check that the provided data is valid. You can use the 'invalidFields' field to get the list of invalid fields or just use the 'message' field.
401
You are not authorized, check your API key and try again.
403
You are not authorized to access this endpoint, you may be missing an API key scope or be requesting a privileged endpoint.
404
One of the objects referenced by the ID given in the URL or form was not found, check the ID and try again.