Get all customer Identifications
curl --request GET \
--url https://api.sandbox.iron.xyz/api/customers/{id}/identifications \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.sandbox.iron.xyz/api/customers/{id}/identifications"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.sandbox.iron.xyz/api/customers/{id}/identifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sandbox.iron.xyz/api/customers/{id}/identifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sandbox.iron.xyz/api/customers/{id}/identifications"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sandbox.iron.xyz/api/customers/{id}/identifications")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sandbox.iron.xyz/api/customers/{id}/identifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"blocking_abilities": {},
"created_at": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "Pending",
"updated_at": "2023-11-07T05:31:56Z",
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"partner_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"preflight_summary": {
"missingInputs": [
"<string>"
],
"reasons": [
"<string>"
],
"status": "likely_pass",
"workflowErrors": [
{
"code": "<string>",
"message": "<string>",
"missingPaths": [
"<string>"
]
}
]
},
"residence_country": "<string>",
"review_comment": "<string>",
"step_status": {
"company_beneficiaries": {
"result": "Pending",
"retry": true,
"comment": "<string>"
},
"company_data": {
"result": "Pending",
"retry": true,
"comment": "<string>"
},
"company_documents": {
"result": "Pending",
"retry": true,
"comment": "<string>"
},
"questionnaire": {
"result": "Pending",
"retry": true,
"comment": "<string>"
}
},
"url": "<string>",
"with_edd": true
}
],
"cursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"prev_cursor": null
}"<string>""<string>"{
"message": "<string>",
"trace_id": "<string>"
}Customer
Get all customer Identifications
Retrieve all identifications for this customer
GET
/
customers
/
{id}
/
identifications
Get all customer Identifications
curl --request GET \
--url https://api.sandbox.iron.xyz/api/customers/{id}/identifications \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.sandbox.iron.xyz/api/customers/{id}/identifications"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.sandbox.iron.xyz/api/customers/{id}/identifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sandbox.iron.xyz/api/customers/{id}/identifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sandbox.iron.xyz/api/customers/{id}/identifications"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sandbox.iron.xyz/api/customers/{id}/identifications")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sandbox.iron.xyz/api/customers/{id}/identifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"blocking_abilities": {},
"created_at": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "Pending",
"updated_at": "2023-11-07T05:31:56Z",
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"partner_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"preflight_summary": {
"missingInputs": [
"<string>"
],
"reasons": [
"<string>"
],
"status": "likely_pass",
"workflowErrors": [
{
"code": "<string>",
"message": "<string>",
"missingPaths": [
"<string>"
]
}
]
},
"residence_country": "<string>",
"review_comment": "<string>",
"step_status": {
"company_beneficiaries": {
"result": "Pending",
"retry": true,
"comment": "<string>"
},
"company_data": {
"result": "Pending",
"retry": true,
"comment": "<string>"
},
"company_documents": {
"result": "Pending",
"retry": true,
"comment": "<string>"
},
"questionnaire": {
"result": "Pending",
"retry": true,
"comment": "<string>"
}
},
"url": "<string>",
"with_edd": true
}
],
"cursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"prev_cursor": null
}"<string>""<string>"{
"message": "<string>",
"trace_id": "<string>"
}Authorizations
API Key
Headers
Optional sub-partner UUID, if provided, the identifications will be filtered for the sub-partner
Selects the API version for this request, as an ISO date (YYYY-MM-DD). Omit to use the default version (2025-03-13). Supported versions: 2025-03-13, 2026-07-01, 2026-08-01.
Path Parameters
the ID of the Customer to get Identifications for
Query Parameters
Paging: the cursor field from previous page
Paging: the requested page size (max 100)
Response
GET ALL Identification Succeeded
Was this page helpful?