Skip to main content
POST
/
verifications
/
{verificationId}
/
send-inputs
Send verification inputs
curl --request POST \
  --url https://api.urtentic.com/api/v1/verifications/{verificationId}/send-inputs \
  --header 'Content-Type: multipart/form-data' \
  --form 'inputs=[
  {
    "fileName": "selfie.mp4",
    "fieldName": "SELFIE_VIDEO",
    "value": "selfie.mp4"
  },
  {
    "fieldName": "DOCUMENT_TYPE",
    "value": "PASSPORT"
  },
  {
    "fileName": "passport_front.jpg",
    "fieldName": "FRONT_IMAGE",
    "value": "passport_front.jpg"
  }
]
' \
  --form 'documents=(binary file data)' \
  --form documents.items='@example-file'
{
  "message": "Inputs received and processing started",
  "status": "PROCESSING",
  "inputsAccepted": [
    "SELFIE_VIDEO",
    "DOCUMENT_TYPE",
    "FRONT_IMAGE"
  ]
}

Path Parameters

verificationId
string<uuid>
required

Unique identifier of the verification. This is the verificationId returned when starting a verification.

Body

multipart/form-data
inputs
string<json>

JSON array of input definitions that map files to specific field types. Each object in the array should define:

  • fieldName: The type of input (e.g., SELFIE_VIDEO, FRONT_IMAGE)
  • value: The filename or value for the field
  • fileName: The filename for file uploads (should match the uploaded file name)
Example:

"[\n {\n \"fileName\": \"selfie.mp4\",\n \"fieldName\": \"SELFIE_VIDEO\",\n \"value\": \"selfie.mp4\"\n },\n {\n \"fieldName\": \"DOCUMENT_TYPE\",\n \"value\": \"PASSPORT\"\n },\n {\n \"fileName\": \"passport_front.jpg\",\n \"fieldName\": \"FRONT_IMAGE\",\n \"value\": \"passport_front.jpg\"\n }\n]\n"

documents
file[]

Document files to be processed. Multiple files can be uploaded with this field. The filenames should match the values in the "inputs" JSON.

Response

Inputs received and processing started

message
string

Confirmation message

Example:

"Inputs received and processing started"

status
string

Current status of the verification

Example:

"PROCESSING"

inputsAccepted
string[]

List of accepted input fields

Example:
[
"SELFIE_VIDEO",
"DOCUMENT_TYPE",
"FRONT_IMAGE"
]