List
GET/keys/:key/configs
Lists configurations associated with a key
Request
Path Parameters
Query Parameters
Responses
- 200
- 400
- 401
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
result objectrequired
List of configurations
configs object[]required
Timestamp for when the config was created
Timestamp for when the config was updated
Possible values: <= 32
A unique name to identify the configuration payload
Possible values: <= 4096
A serialised payload of up to 4096
characters
Possible values: [Success
]
Possible values: [2000
]
{
"result": {
"configs": [
{
"updatedAt": "2016-01-21T17:14:49.971Z",
"createdAt": "2016-01-21T17:14:49.971Z",
"name": "woocommerce",
"payload": "{\n \"removeOrganisation\": false\n}\n"
}
]
},
"message": "Success",
"code": 2000
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
API Response Code. Non 2xxx
code indicates a failure. This code will provide a more specific reason when a failure occurs and facilitates debugging.
Human readable error message supplied with every error response.
errors object[]
Indicates location of error in request query or URL parameter
Indicates location of error in request query or URL parameter
{
"code": 0,
"message": "string",
"errors": [
{
"message": "should have required property 'type'",
"path": ".query.type",
"errorCode": "required.openapi.validation"
}
]
}
Unauthorized Request
- application/json
- Schema
- Example (from schema)
Schema
API Response Code. Non 2xxx
code indicates a failure. This code will provide a more specific reason when a failure occurs and facilitates debugging.
Human readable error message supplied with every error response.
{
"code": 0,
"message": "string"
}