Create API Key
POST/auth/key
Use endpoint POST /auth/key
to get an appKey for your application. You can create a new key at any time. Creating a new key renders the old key unusable. This is required and only used for /auth/token
.
Request
- application/json
Body
data
object
required
Responses
- 201
Created
- application/json
- Schema
- Example (from schema)
- Result
Schema
links
object
data
object
{
"links": {
"self": "string"
},
"data": {
"type": "string",
"id": "string",
"attributes": {
"appKey": "string"
}
}
}
{
"links": {
"self": "xxxx/auth/key"
},
"data": {
"type": "auth",
"id": "xxxx",
"attributes": {
"appKey": "xxxx"
}
}
}