Skip to main content
GET
/
kyc-connector
/
veriff
/
ingestions
List Veriff ingestions
curl --request GET \
  --url https://api.enterprise.sandbox.uphold.com/kyc-connector/veriff/ingestions \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.enterprise.sandbox.uphold.com/kyc-connector/veriff/ingestions"

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/veriff/ingestions', 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/veriff/ingestions",
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/veriff/ingestions"

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/veriff/ingestions")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.enterprise.sandbox.uphold.com/kyc-connector/veriff/ingestions")

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
{
  "ingestions": [
    {
      "id": "019b2184-1ca9-7dd6-b7a5-ec242def68b0",
      "userId": "123e4567-e89b-12d3-a456-426614174000",
      "status": "queued",
      "processes": [
        "profile",
        "address",
        "identity",
        "proof-of-address"
      ],
      "provider": "veriff",
      "parameters": {
        "sessions": [
          {
            "processes": [
              "profile",
              "identity"
            ],
            "sessionId": "550e8400-e29b-41d4-a716-446655440000",
            "integrationName": "integration-abc123"
          },
          {
            "processes": [
              "address",
              "proof-of-address"
            ],
            "sessionId": "661f9511-f30c-52e5-b827-557766551111",
            "integrationName": "integration-def456"
          }
        ]
      },
      "createdAt": "2026-01-15T14:23:01.819Z",
      "updatedAt": "2026-01-15T14:23:01.819Z"
    },
    {
      "id": "019b218f-f235-79d3-866c-f56215e515e2",
      "userId": "123e4567-e89b-12d3-a456-426614174000",
      "status": "finished",
      "processes": [
        "profile",
        "address",
        "identity",
        "proof-of-address"
      ],
      "provider": "veriff",
      "parameters": {
        "sessions": [
          {
            "processes": [
              "profile",
              "identity"
            ],
            "sessionId": "550e8400-e29b-41d4-a716-446655440000",
            "integrationName": "integration-abc123"
          },
          {
            "processes": [
              "address",
              "proof-of-address"
            ],
            "sessionId": "661f9511-f30c-52e5-b827-557766551111",
            "integrationName": "integration-def456"
          }
        ]
      },
      "result": {
        "profile": {
          "status": "completed",
          "data": {
            "person": {
              "givenName": "John",
              "familyName": "Doe",
              "birthdate": "1987-01-01"
            }
          }
        },
        "address": {
          "status": "completed",
          "data": {
            "country": "GB",
            "city": "London",
            "line1": "123 Main St",
            "postalCode": "SW1A 1AA"
          }
        },
        "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": {
                "mediaId": "media-abc123"
              }
            }
          ]
        },
        "proofOfAddress": {
          "status": "completed",
          "data": {
            "person": {
              "givenName": "John",
              "familyName": "Doe",
              "address": {
                "country": "GB",
                "city": "London",
                "line1": "123 Main St",
                "postalCode": "SW1A 1AA"
              }
            },
            "verifiedAt": "2020-01-01T00:00:00.000Z"
          },
          "files": [
            {
              "id": "234f5678-f90c-23e4-b567-537725285111",
              "category": "document",
              "context": "proof-of-address",
              "contentType": "image/png",
              "size": 153600,
              "providerDetails": {
                "mediaId": "media-def456"
              }
            }
          ]
        }
      },
      "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"
    }
  ],
  "pagination": {
    "first": "https://api.enterprise.uphold.com/kyc-connector/veriff/ingestions?perPage=2",
    "next": "https://api.enterprise.uphold.com/kyc-connector/veriff/ingestions?cursor=019b2184-1ca9-7dd6-b7a5-ec242def68b0&perPage=2"
  }
}

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication

Query Parameters

perPage
integer<int32>
default:10

The number of items per page.

Required range: 1 <= x <= 100

Response

200 - application/json

Veriff ingestions retrieved.

ingestions
object[]
required
pagination
object
required

The pagination information.