VTEX · Schema

Getappkeysfromaccount

Response body for getting all application keys from the account.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
id string ID of the application key.
appKey string AppKey.
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`).
View JSON Schema on GitHub

JSON Schema

vtex-getappkeysfromaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Getappkeysfromaccount",
  "title": "Getappkeysfromaccount",
  "description": "Response body for getting all application keys from the account.",
  "required": [
    "id",
    "appKey",
    "label",
    "createdIn",
    "isActive"
  ],
  "type": "object",
  "properties": {
    "id": {
      "description": "ID of the application key.",
      "type": "string"
    },
    "appKey": {
      "description": "AppKey.",
      "type": "string"
    },
    "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"
    }
  }
}