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

Authorizations

Authorization
string
header
required

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
Example:

"ACTIVE"

nextToken
string
Example:

"eyJsYXN0SXRlbUlkIjogInN0cmluZyIsICJwYWdlU2l6ZSI6IDEwMCwgInNvcnRPcmRlciI6ICJhc2MifQ=="

pageSize
number
Example:

10

Response

200
application/json
Response for List addons requests
data
object[]
required

Request to create an addon

nextToken
string
context
object