VTEX · Schema

CreatenewappkeyRequest

Request body for creating new application key (/api/vlm/appkeys)

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
label string Label of the application key.
View JSON Schema on GitHub

JSON Schema

vtex-createnewappkeyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatenewappkeyRequest",
  "title": "CreatenewappkeyRequest",
  "description": "Request body for creating new application key (/api/vlm/appkeys)",
  "required": [
    "label"
  ],
  "type": "object",
  "properties": {
    "label": {
      "description": "Label of the application key.",
      "type": "string",
      "example": "appkey-test"
    }
  }
}