> ## Documentation Index
> Fetch the complete documentation index at: https://umbrella-docs.info/llms.txt
> Use this file to discover all available pages before exploring further.

# Document Verification Verify Single Service (Upcoming)

> Document Verification Verify Single Service API Documentation

For a usage description of the Document Verification Verify Single Service, please refer to the [Document Verification](/essentials/documentVerification) page.

## Endpoint

**POST** `/verifySingle`


## OpenAPI

````yaml POST /verifySingle
openapi: 3.1.0
info:
  title: Umbrella API
  version: 1.0.0
  description: >-
    API documentation for Umbrella services including KYB, KYC, AML, payments,
    phone intelligence, onboarding, and address verification.
servers:
  - url: https://api-umbrella.io/api/services
    description: Production
  - url: https://sandbox-umbrella-api.azurewebsites.net/api/services
    description: Sandbox
security:
  - bearerAuth: []
paths:
  /verifySingle:
    post:
      summary: Single-Step Document Verification
      description: >-
        Upload all document images in a single request and get instant
        verification results.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              items:
                type: object
                required:
                  - imageName
                  - imageSide
                  - imageData
                properties:
                  imageName:
                    type: string
                    description: Name of the uploaded image file
                  imageSide:
                    type: string
                    enum:
                      - front
                      - back
                      - selfie
                    description: Specifies which side of the document (front, back, selfie)
                  storeOnly:
                    type: boolean
                    description: If true, stores the image without classification
                  imageData:
                    type: string
                    description: Base64-encoded image or multipart file
                  passThroughData:
                    type: object
                    description: Custom metadata (e.g., user ID)
      responses:
        '200':
          description: Verification successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerificationResultResponse'
        '400':
          description: Invalid request payload.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error400'
        '401':
          description: Unauthorized request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error401'
components:
  schemas:
    VerificationResultResponse:
      type: object
      required:
        - status
        - data
      properties:
        status:
          type: boolean
          description: Indicates whether the request succeeded.
        data:
          type: object
          description: Verification payload.
          properties:
            isVerified:
              type: boolean
              description: Whether the verification was successful.
            status:
              type: string
              description: High-level status of the verification.
              enum:
                - completed
                - cancelled
                - error
            message:
              type: string
              description: Status message.
            requestId:
              type: string
              description: Unique ID for the verification request.
            signature:
              type: object
              description: Signature metadata and resources.
              properties:
                content:
                  type: array
                  items:
                    type: object
                    properties:
                      id:
                        type: string
                      method:
                        type: string
                      status:
                        type: string
                      pageMode:
                        type: string
                      signedAt:
                        type: string
                        format: date-time
                      plainResource:
                        type: object
                        properties:
                          id:
                            type: string
                          name:
                            type: string
                          type:
                            type: string
                          family:
                            type: string
                          status:
                            type: string
                          subType:
                            type: string
                          filename:
                            type: string
                          metadata:
                            type: object
                            additionalProperties: true
                          mimeType:
                            type: string
                          sizeBytes:
                            type: integer
                          resourceUri:
                            type: string
                          resourceUrl:
                            type: string
                            format: uri
                          urlValidBefore:
                            type: string
                            format: date-time
                        additionalProperties: true
                      signedResource:
                        type: object
                        properties:
                          id:
                            type: string
                          type:
                            type: string
                          family:
                            type: string
                          status:
                            type: string
                          filename:
                            type: string
                          metadata:
                            type: object
                            additionalProperties: true
                          mimeType:
                            type: string
                          sizeBytes:
                            type: integer
                          resourceUri:
                            type: string
                          resourceUrl:
                            type: string
                            format: uri
                          urlValidBefore:
                            type: string
                            format: date-time
                        additionalProperties: true
                    additionalProperties: true
            identification:
              type: object
              description: KYC / identification results.
              properties:
                id:
                  type: string
                actor:
                  type: string
                  description: Role of the actor in session (e.g., userToIdentify).
                idSelf:
                  type: object
                  properties:
                    artifacts:
                      type: object
                      properties:
                        biometry:
                          type: array
                          items:
                            type: object
                        document:
                          type: array
                          items:
                            type: object
                    biometryCheck:
                      type: object
                      properties:
                        keysWithError:
                          type: array
                          items:
                            type: string
                        controlsSummary:
                          type: integer
                    documentCheck:
                      type: object
                      properties:
                        documentType:
                          type: string
                        documentTypeFamily:
                          type: string
                        keysWithError:
                          type: array
                          items:
                            type: string
                        controlsSummary:
                          type: integer
                  additionalProperties: true
                source:
                  type: string
                status:
                  type: string
                personData:
                  type: object
                  properties:
                    email:
                      type: string
                      format: email
                    gender:
                      type: string
                    firstName:
                      type: string
                    lastName:
                      type: string
                    birthDate:
                      type: string
                      pattern: ^\d{4}-\d{2}-\d{2}$
                    birthPlace:
                      type: string
                    nationality:
                      type: string
                    phoneNumber:
                      type: string
                    documentDetails:
                      type: object
                      properties:
                        type:
                          type: string
                        number:
                          type: string
                        issuedOn:
                          type: string
                        expiryDate:
                          type: string
                        issuanceCountry:
                          type: string
                        issuanceAuthority:
                          type: string
                  additionalProperties: true
                finalizedAt:
                  type: string
                  format: date-time
                organizationId:
                  type: string
                validationDetail:
                  type: object
                  description: Per-field validation indicators.
                  additionalProperties:
                    type: object
                    properties:
                      otpValidated:
                        type: string
                      byRequestInput:
                        type: string
                      requestMatched:
                        type: string
                      byIdentificationSource:
                        type: string
                    additionalProperties: true
              additionalProperties: true
          additionalProperties: true
    Error400:
      required:
        - message
      type: object
      properties:
        message:
          type: string
          example: Invalid request payload
    Error401:
      required:
        - message
      type: object
      properties:
        message:
          type: string
          example: Unauthorized request
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token obtained from POST /auth. Valid for 60 minutes.

````