VTEX · Schema

CreateGiftCardCancellationTransactionRequest

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
value number Transaction value.
requestId string Request identification of the transaction.
View JSON Schema on GitHub

JSON Schema

vtex-creategiftcardcancellationtransactionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateGiftCardCancellationTransactionRequest",
  "title": "CreateGiftCardCancellationTransactionRequest",
  "type": "object",
  "required": [
    "value",
    "requestId"
  ],
  "properties": {
    "value": {
      "type": "number",
      "description": "Transaction value.",
      "example": 4.1
    },
    "requestId": {
      "type": "string",
      "description": "Request identification of the transaction.",
      "example": "12093812masoidj120398"
    }
  }
}