Skip to main content
POST
/
sandbox
/
identification
/
{id}
Update pending Identification status
curl --request POST \
  --url https://api.sandbox.iron.xyz/api/sandbox/identification/{id} \
  --header 'Content-Type: application/json; charset=utf-8' \
  --header 'IDEMPOTENCY-KEY: <idempotency-key>' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "approved": true
}
'
{
  "created_at": "2023-11-07T05:31:56Z",
  "customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "Pending",
  "updated_at": "2023-11-07T05:31:56Z",
  "step_status": {
    "company_beneficiaries": {
      "result": "Pending",
      "retry": true
    },
    "company_data": {
      "result": "Pending",
      "retry": true
    },
    "company_documents": {
      "result": "Pending",
      "retry": true
    },
    "questionnaire": {
      "result": "Pending",
      "retry": true
    }
  },
  "url": "<string>"
}

Authorizations

X-API-Key
string
header
required

API Key

Headers

IDEMPOTENCY-KEY
string
required

a UUID ensuring the reset operation is only processed once

Path Parameters

id
string<uuid>
required

the ID of the identification to update

Body

application/json; charset=utf-8

Parameters required to update a pending identification

approved
boolean
required

Whether the identification should be approved or rejected

Response

Identification

The entity wrapping our KYC/KYB process and underlying providers

created_at
string<date-time>
required
customer_id
string<uuid>
required
id
string<uuid>
required
status
enum<string>
required

The Process status of the identification

The various state transitions an identification can go through.

Available options:
Pending,
Processed,
PendingReview,
Approved,
Declined,
Expired
updated_at
string<date-time>
required
step_status
BusinessIdentificationStepStatus · object
  • BusinessIdentificationStepStatus
  • PersonIdentificationStepStatus
url
string