Adyen · Schema

RelayedAuthorisationData

RelayedAuthorisationData schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
metadata object The `metadata` object from the relayed authorisation response from your server.
reference string The `reference` from the relayed authorisation response from your server.
status string The value can be **Authorised** or **Refused**, based on the `authorisationDecision.status` in the relayed authorisation response from your server.
View JSON Schema on GitHub

JSON Schema

notification-webhooks-relayed-authorisation-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/notification-webhooks-relayed-authorisation-data-schema.json",
  "title": "RelayedAuthorisationData",
  "description": "RelayedAuthorisationData schema from Adyen API",
  "properties": {
    "metadata": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "The `metadata` object from the relayed authorisation response from your server.",
      "type": "object"
    },
    "reference": {
      "description": "The `reference` from the relayed authorisation response from your server.",
      "type": "string"
    },
    "status": {
      "description": "The value can be **Authorised** or **Refused**, based on the `authorisationDecision.status` in the relayed authorisation response from your server.",
      "type": "string"
    }
  },
  "type": "object"
}