Skip to main content
GET
/
tickets
Get all tickets
curl --request GET \
  --url https://api.gleap.io/v3/tickets \
  --header 'Authorization: Bearer <token>' \
  --header 'project: <project>'
{
  "tickets": [
    {
      "_id": "507f1f77bcf86cd799439011",
      "id": "507f1f77bcf86cd799439011",
      "title": "Login button not working",
      "formData": {
        "description": "Users cannot log in when clicking the login button"
      },
      "type": "BUG",
      "status": "OPEN",
      "priority": "HIGH",
      "createdAt": "2024-01-15T10:30:00.000Z",
      "updatedAt": "2024-01-15T11:45:00.000Z",
      "processingUser": {
        "_id": "507f1f77bcf86cd799439012",
        "email": "support@example.com",
        "firstName": "John",
        "lastName": "Doe"
      },
      "session": {
        "_id": "507f1f77bcf86cd799439013",
        "email": "user@example.com"
      },
      "latestComment": {
        "_id": "507f1f77bcf86cd799439014",
        "data": {
          "content": "Any update on this issue?"
        }
      }
    }
  ],
  "count": 1,
  "totalCount": 42
}

Authorizations

Authorization
string
header
required

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

Headers

project
string
required

Response

200 - application/json

Ok

The response is of type any.