Adyen · Schema

UploadDocumentRequest

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

adyen-uploaddocumentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UploadDocumentRequest",
  "title": "UploadDocumentRequest",
  "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"
  ],
  "type": "object"
}