VTEX · Schema

Success5

Create authorization token response body information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
applicationId string The same `applicationId` sent in the request.
token string You must generate a token that will be used to identify the same context when we redirect the merchant to your application.
View JSON Schema on GitHub

JSON Schema

vtex-success5-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Success5",
  "title": "Success5",
  "required": [
    "applicationId",
    "token"
  ],
  "type": "object",
  "description": "Create authorization token response body information.",
  "properties": {
    "applicationId": {
      "type": "string",
      "description": "The same `applicationId` sent in the request."
    },
    "token": {
      "type": "string",
      "description": "You must generate a token that will be used to identify the same context when we redirect the merchant to your application."
    }
  }
}