SumUp · Schema

Invite

Pending invitation for membership.

PaymentsPOSPoint of SaleCard ReadersCheckoutFintechMobile PaymentsOnline Payments

Properties

Name Type Description
email string Email address of the invited user.
expires_at string
View JSON Schema on GitHub

JSON Schema

invite.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Invite",
  "description": "Pending invitation for membership.",
  "type": "object",
  "properties": {
    "email": {
      "description": "Email address of the invited user.",
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    },
    "expires_at": {
      "type": "string",
      "format": "date-time",
      "example": "2023-01-20T15:16:17+00:00"
    }
  },
  "required": [
    "email",
    "expires_at"
  ]
}