Adyen · Schema

CreateAllowedOriginRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
_links object References to resources linked to the allowed origin.
domain string Domain of the allowed origin.
id string Unique identifier of the allowed origin.
View JSON Schema on GitHub

JSON Schema

adyen-createallowedoriginrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateAllowedOriginRequest",
  "title": "CreateAllowedOriginRequest",
  "properties": {
    "_links": {
      "description": "References to resources linked to the allowed origin.",
      "$ref": "#/components/schemas/Links"
    },
    "domain": {
      "description": "Domain of the allowed origin.",
      "example": "https://adyen.com",
      "type": "string"
    },
    "id": {
      "description": "Unique identifier of the allowed origin.",
      "type": "string"
    }
  },
  "required": [
    "domain"
  ],
  "type": "object"
}