List
GET/addon/configurations
List the Add-ons configurations
Request
Query Parameters
token string
The access token
key string
The key
limit integer
Default value: 10
The maximum number of results
Responses
- 200
- 401
Found
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
first stringnullablerequired
The link to the first page.
items
object[]
required
An array of objects.
can_do_content_expansion boolean
Whether this Add-on can do content expansion
can_import_to_wordpress boolean
Whether this Add-on can import to WordPress.
key string
A key
wp_admin string
The wp-admin endpoint for a website using the key.
wp_json string
The wp-json endpoint for a website using the key.
last stringnullablerequired
The link to the last page.
next stringnullablerequired
The link to the next page or null if there's no page.
prev stringnullablerequired
The link to the previous page or null if there's no page.
self stringnullablerequired
The link to the current page.
{
"first": "string",
"items": [
{
"can_do_content_expansion": true,
"can_import_to_wordpress": true,
"key": "string",
"wp_admin": "string",
"wp_json": "string"
}
],
"last": "string",
"next": "string",
"prev": "string",
"self": "string"
}
Authentication Failure