Adyen · Schema

UploadDocumentRequest

UploadDocumentRequest schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
documentContent string The content of the document, in Base64-encoded string format. To learn about document requirements, refer to [Verification checks](https://docs.adyen.com/marketplaces-and-platforms/classic/verificatio
documentDetail object Details of the document being submitted.
View JSON Schema on GitHub

JSON Schema

accounts-upload-document-request-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/accounts-upload-document-request-schema.json",
  "title": "UploadDocumentRequest",
  "description": "UploadDocumentRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "documentContent": {
      "description": "The content of the document, in Base64-encoded string format.\n\nTo learn about document requirements, refer to [Verification checks](https://docs.adyen.com/marketplaces-and-platforms/classic/verification-checks).",
      "format": "byte",
      "type": "string"
    },
    "documentDetail": {
      "description": "Details of the document being submitted.",
      "$ref": "#/components/schemas/DocumentDetail"
    }
  },
  "required": [
    "documentDetail",
    "documentContent"
  ]
}