For the complete documentation index, see llms.txt. This page is also available as Markdown.

Feature Access Codes

Manage your feature access codes.

List feature access codes

get

Returns a list of feature access codes.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

OK

application/json
get/feature_access_codes
GET /api/feature_access_codes HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "items": [
    {
      "code": null,
      "feature": null,
      "enabled": null
    }
  ]
}

Update feature access code

post

Update properties of a feature access code.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
Responses
200

OK

No content

post/feature_access_codes
POST /api/feature_access_codes HTTP/1.1
Host: HOSTNAME:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 55

{
  "items": [
    {
      "code": null,
      "feature": null,
      "enabled": null
    }
  ]
}

No content

Last updated

Was this helpful?