v1

latestOpenAPI 3.0.12026-07-175557102.5 KB

List authenticated user's tickets

Returns a list of support tickets created by the authenticated user

get/user/tickets

Response

OK

idstring uuid required

The ID of the ticket.

kind'user_scope_quota_increase' | 'scope_package_quota_increase' | 'other' required

The kind of support ticket.

metaobject required

Additional metadata for the ticket.

closedboolean required

Whether the ticket is closed.

updatedAtstring date-time required

The date and time when the ticket was last updated.

createdAtstring date-time required

The date and time when the ticket was created.

Example response

[
  {
    "creator": {
      "name": "Ryan Dahl",
      "avatarUrl": "https://avatars.githubusercontent.com/u/80?v=4",
      "githubId": 80
    },
    "messages": [
      {
        "author": {
          "name": "Ryan Dahl",
          "avatarUrl": "https://avatars.githubusercontent.com/u/80?v=4",
          "githubId": 80
        }
      }
    ]
  }
]