Get Sumsub ingestion
curl --request GET \
--url https://api.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}', 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.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"ingestion": {
"id": "019b218f-f235-79d3-866c-f56215e515e2",
"userId": "123e4567-e89b-12d3-a456-426614174000",
"status": "finished",
"processes": [
"identity",
"proof-of-address"
],
"provider": "sumsub",
"parameters": {
"shareToken": "_act-sbx-jwt-eyJhbGciOiJub25lIn0.eyJqdGkiOiJ0ZXN0IiwidXJsIjoiaHR0cHM6Ly9leGFtcGxlLmNvbSJ9."
},
"result": {
"identity": {
"status": "completed",
"data": {
"document": {
"type": "passport",
"number": "7700225VH",
"country": "GB",
"expiresAt": "2026-03-13"
},
"person": {
"givenName": "John",
"familyName": "Doe",
"birthdate": "1987-01-01",
"gender": "male"
},
"verifiedAt": "2020-01-01T00:00:00.000Z"
},
"files": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"category": "document",
"context": "photo-document-front",
"contentType": "image/png",
"size": 204800,
"providerDetails": {
"fileId": "732150141"
}
}
]
},
"proofOfAddress": {
"status": "failed",
"error": {
"code": "provider_data_not_available",
"message": "Profile data not available in Sumsub applicant info"
}
}
},
"startedAt": "2025-12-15T10:17:45.113Z",
"finishedAt": "2025-12-15T10:18:33.241Z",
"createdAt": "2025-12-15T10:17:44.911Z",
"updatedAt": "2025-12-15T10:18:33.241Z"
}
}{
"code": "entity_not_found",
"message": "The ingestion cannot be found",
"details": {
"entity": "ingestion"
}
}Sumsub
Get Sumsub ingestion
Retrieve an existing Sumsub ingestion by id.
GET
/
kyc-connector
/
sumsub
/
ingestions
/
{ingestionId}
Get Sumsub ingestion
curl --request GET \
--url https://api.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}', 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.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.enterprise.sandbox.uphold.com/kyc-connector/sumsub/ingestions/{ingestionId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"ingestion": {
"id": "019b218f-f235-79d3-866c-f56215e515e2",
"userId": "123e4567-e89b-12d3-a456-426614174000",
"status": "finished",
"processes": [
"identity",
"proof-of-address"
],
"provider": "sumsub",
"parameters": {
"shareToken": "_act-sbx-jwt-eyJhbGciOiJub25lIn0.eyJqdGkiOiJ0ZXN0IiwidXJsIjoiaHR0cHM6Ly9leGFtcGxlLmNvbSJ9."
},
"result": {
"identity": {
"status": "completed",
"data": {
"document": {
"type": "passport",
"number": "7700225VH",
"country": "GB",
"expiresAt": "2026-03-13"
},
"person": {
"givenName": "John",
"familyName": "Doe",
"birthdate": "1987-01-01",
"gender": "male"
},
"verifiedAt": "2020-01-01T00:00:00.000Z"
},
"files": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"category": "document",
"context": "photo-document-front",
"contentType": "image/png",
"size": 204800,
"providerDetails": {
"fileId": "732150141"
}
}
]
},
"proofOfAddress": {
"status": "failed",
"error": {
"code": "provider_data_not_available",
"message": "Profile data not available in Sumsub applicant info"
}
}
},
"startedAt": "2025-12-15T10:17:45.113Z",
"finishedAt": "2025-12-15T10:18:33.241Z",
"createdAt": "2025-12-15T10:17:44.911Z",
"updatedAt": "2025-12-15T10:18:33.241Z"
}
}{
"code": "entity_not_found",
"message": "The ingestion cannot be found",
"details": {
"entity": "ingestion"
}
}Was this page helpful?
⌘I