Deliverect · Schema

GiftcardsRegisterprofile

Deliverect Register Profile

RestaurantDeliveryOnline OrderingPoint of SaleOrder ManagementIntegration

Properties

Name Type Description
account string
apiKey string API key is the unique identifier of the customer within the gift cards gateway
View JSON Schema on GitHub

JSON Schema

gift-cards-api-giftcards-registerprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/deliverect/refs/heads/main/json-schema/gift-cards-api-giftcards-registerprofile-schema.json",
  "title": "GiftcardsRegisterprofile",
  "description": "Deliverect Register Profile",
  "type": "object",
  "properties": {
    "account": {
      "type": "string",
      "example": "string"
    },
    "apiKey": {
      "type": "string",
      "example": "string",
      "description": "API key is the unique identifier of the customer within the gift cards gateway"
    }
  },
  "required": [
    "account",
    "apiKey"
  ]
}