GET
/
addons
curl --request GET \
  --url https://api.togai.com/addons \
  --header 'Authorization: <authorization>'
{
  "data": [
    {
      "name": "<string>",
      "type": "LICENSE",
      "billableName": "<string>",
      "id": "addon.1zYnCiM9Bpg.1zYn",
      "createdAt": "2023-11-07T05:31:56Z",
      "status": "ACTIVE"
    }
  ],
  "nextToken": "<string>",
  "context": {
    "pageSize": 123,
    "sortOrder": "ASC"
  }
}

Authorizations

Authorization
string
headerrequired

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

Query Parameters

status
enum<string>

Filter by status

Available options:
ACTIVE,
ARCHIVED
nextToken
string
pageSize
number

Response

200 - application/json
data
object[]
required
nextToken
string
context
object