Skip to main content
GET
/
dev
/
v1
/
tickets
List tickets
curl --request GET \
  --url https://api.shoppex.io/dev/v1/tickets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "ticket_db_1",
      "uniqid": "ticket_1",
      "shop_id": "shop_1",
      "invoice_id": "inv_1",
      "customer_email": "[email protected]",
      "title": "Need help",
      "status": "OPEN",
      "created_at": 1711972800,
      "updated_at": 1711973400,
      "updated_by": "user_1"
    }
  ],
  "pagination": {
    "next_cursor": null,
    "has_more": false
  }
}

Authorizations

Authorization
string
header
required

Use your Shoppex API key in the Authorization header.

Response

200 - application/json

Successful response

data
object[]
pagination
object