Giftbit · Schema

Contact

A reward recipient contact used in email reward orders.

Gift CardsDigital RewardsIncentivesPaymentsReward DistributionPrepaid Cards

Properties

Name Type Description
email string Recipient email address.
firstname string Recipient first name.
lastname string Recipient last name.
View JSON Schema on GitHub

JSON Schema

contact.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/giftbit/main/json-schema/contact.json",
  "title": "Contact",
  "description": "A reward recipient contact used in email reward orders.",
  "type": "object",
  "required": ["email"],
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "description": "Recipient email address.",
      "example": "[email protected]"
    },
    "firstname": {
      "type": "string",
      "description": "Recipient first name.",
      "example": "Perry"
    },
    "lastname": {
      "type": "string",
      "description": "Recipient last name.",
      "example": "Johnson"
    }
  }
}