AddOns
List addOns
Get a list of add-ons
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
headerrequiredBearer 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[]
requirednextToken
string
context
object
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"
}
}