Unified.to · Schema

PaymentLink

IntegrationsUnified API

Properties

Name Type Description
amount number
contact_id string
created_at string
currency string
id string
is_active boolean
is_chargeable_now boolean
lineitems object
payment_id string
raw object
success_url string
updated_at string
url string
View JSON Schema on GitHub

JSON Schema

unified-to-paymentlink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentLink",
  "title": "PaymentLink",
  "properties": {
    "amount": {
      "type": "number"
    },
    "contact_id": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "currency": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "is_active": {
      "type": "boolean"
    },
    "is_chargeable_now": {
      "type": "boolean"
    },
    "lineitems": {
      "$ref": "#/components/schemas/property_PaymentLink_lineitems"
    },
    "payment_id": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "success_url": {
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  },
  "type": "object"
}