VTEX · Schema
AppKeyItems
Object representing application keys.
CommerceE-CommerceRetailMarketplacePayments
Properties
| Name | Type | Description |
|---|---|---|
| id | string | ID of the application key. |
| appKey | string | AppKey. |
| appToken | string | AppToken. For security reasons, it should always be null. |
| label | string | Label of the application key. |
| createdIn | string | Creation date of the application key. |
| isActive | boolean | Defines if the application key is active (`true`) or not (`false`). |
| isBlocked | boolean | Defines if the application key is blocked (`true`) or not (`false`). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AppKeyItems",
"title": "AppKeyItems",
"description": "Object representing application keys.",
"type": "object",
"properties": {
"id": {
"description": "ID of the application key.",
"type": "string"
},
"appKey": {
"description": "AppKey.",
"type": "string"
},
"appToken": {
"description": "AppToken. For security reasons, it should always be null.",
"type": "string",
"nullable": true
},
"label": {
"description": "Label of the application key.",
"type": "string"
},
"createdIn": {
"description": "Creation date of the application key.",
"type": "string",
"format": "date-time"
},
"isActive": {
"description": "Defines if the application key is active (`true`) or not (`false`).",
"type": "boolean"
},
"isBlocked": {
"description": "Defines if the application key is blocked (`true`) or not (`false`).",
"type": "boolean"
}
}
}