All user related paths.
/users
Returns the list of all users.
sort
string
Sort the result by created_at
, updated_at
.
order
string
Sort order of the result list if the sort
parameter is specified. Use ASC
for ascending or DESC
for descending sort order.
offset
int
Use the offset
argument to specify where in the list of results to start when returning items for a particular query.
limit
int
Use the limit
argument to specify the maximum number of items returned.
OK
{
"meta": {
"offset": 0,
"limit": 100,
"count": 1,
"total_count": 1,
"sort": "created_at",
"order": "ASC"
},
"data": [
{
"id": "83d83ec2-d2ca-49ff-bbea-b92b5c3be202",
"created_at": "2021-07-21T14:10:00.00Z",
"updated_at": "2021-07-21T14:10:00.00Z",
"first_name": "Karl",
"last_name": "Schmidt",
"salutation": "SALUTATION_MALE",
"title": "DR",
"birth_date": "1972-09-30",
"birth_city": "Berlin",
"birth_country": "DE",
"birth_name": "Schmidt",
"nationalities": [
"DE",
"AU"
],
"postal_address": {
"address_line1": "Rosenweg 221",
"address_line2": "apt. 33",
"postcode": "45678",
"city": "Berlin",
"state": "BE",
"country": "DE"
},
"address": {
"address_line1": "Rosenweg 221",
"address_line2": "apt. 33",
"postcode": "45678",
"city": "Berlin",
"state": "BE",
"country": "DE"
},
"status": "ACTIVE"
},
{
"id": "287673ef-1bae-4d8a-9e78-8ddaae249d72",
"created_at": "2021-07-21T14:10:00.00Z",
"updated_at": "2021-07-21T14:10:00.00Z",
"first_name": "John",
"last_name": "Doe",
"salutation": "SALUTATION_MALE",
"title": "PROF_DR",
"birth_date": "1970-10-01",
"birth_city": "Berlin",
"birth_country": "DE",
"birth_name": "Schmidt",
"nationalities": [
"DE",
"AU"
],
"postal_address": null,
"address": {
"address_line1": "Rosenweg 221",
"address_line2": "apt. 33",
"postcode": "45678",
"city": "Berlin",
"state": "BE",
"country": "DE"
},
"status": "ACTIVE"
}
]
}
/users
Creates a user.
Must match one of
first_name
string
required
First name(s) of the user. Please include all first and middle names of the user.
last_name
string
required
Last name of the user.
salutation
string
Salutation of the user used in reports and statements.
title
string
Title of the user used in reports and statements.
birth_date
string
required
Birth date of the user in YYYY-MM-DD format. RFC 3339, section 5.6
birth_city
string
birth_country
string
Accepted country code. ISO 3166-1 alpha-2 codes.
birth_name
string
If applicable, birth name of the user.
nationalities
array
required
Nationalities of the user. ISO 3166 alpha-2 Codes.
address
object (Address)
required
Address. Must not be a P.O. box or c/o address.
postal_address
One Of
User postal address. Needs to be specified if different to the residential address, otherwise it is automatically populated.
Must match one of
{
"first_name": "Karl",
"last_name": "Schmidt",
"salutation": "SALUTATION_MALE",
"title": "DR",
"birth_date": "1972-09-30",
"birth_city": "Berlin",
"birth_country": "DE",
"birth_name": "Schmidt",
"nationalities": [
"DE",
"AU"
],
"postal_address": {
"address_line1": "Rosenweg 221",
"address_line2": "apt. 33",
"postcode": "45678",
"city": "Berlin",
"state": "BE",
"country": "DE"
},
"address": {
"address_line1": "Rosenweg 221",
"address_line2": "apt. 33",
"postcode": "45678",
"city": "Berlin",
"state": "BE",
"country": "DE"
}
}
User created.
{
"id": "83d83ec2-d2ca-49ff-bbea-b92b5c3be202",
"created_at": "2021-07-21T14:10:00.00Z",
"updated_at": "2021-07-21T14:10:00.00Z",
"first_name": "Karl",
"last_name": "Schmidt",
"salutation": "SALUTATION_MALE",
"title": "DR",
"birth_date": "1972-09-30",
"birth_city": "Berlin",
"birth_country": "DE",
"birth_name": "Schmidt",
"nationalities": [
"DE",
"AU"
],
"postal_address": {
"address_line1": "Rosenweg 221",
"address_line2": "apt. 33",
"postcode": "45678",
"city": "Berlin",
"state": "BE",
"country": "DE"
},
"address": {
"address_line1": "Rosenweg 221",
"address_line2": "apt. 33",
"postcode": "45678",
"city": "Berlin",
"state": "BE",
"country": "DE"
},
"status": "ACTIVE"
}
/users/{user_id}
Returns the user specified by ID.
user_id
string
required
User unique identifier.
OK
{
"id": "83d83ec2-d2ca-49ff-bbea-b92b5c3be202",
"created_at": "2021-07-21T14:10:00.00Z",
"updated_at": "2021-07-21T14:10:00.00Z",
"first_name": "Karl",
"last_name": "Schmidt",
"salutation": "SALUTATION_MALE",
"title": "DR",
"birth_date": "1972-09-30",
"birth_city": "Berlin",
"birth_country": "DE",
"birth_name": "Schmidt",
"nationalities": [
"DE",
"AU"
],
"postal_address": {
"address_line1": "Rosenweg 221",
"address_line2": "apt. 33",
"postcode": "45678",
"city": "Berlin",
"state": "BE",
"country": "DE"
},
"address": {
"address_line1": "Rosenweg 221",
"address_line2": "apt. 33",
"postcode": "45678",
"city": "Berlin",
"state": "BE",
"country": "DE"
},
"status": "ACTIVE"
}
/users/{user_id}
Starts the user offboarding process in the background.
user_id
string
required
User unique identifier.
The request has been successfully accepted and will be processed asynchronously.
Empty response
/users/{user_id}/data_change_requests
Requests a data change for a user specified by ID.
Must match one of
first_name
string
First name of the user.
last_name
string
Last name of the user.
salutation
string
Salutation of the user used in reports and statements.
title
string
Title of the user used in reports and statements.
birth_date
string
Birth date of the user in YYYY-MM-DD format. RFC 3339, section 5.6
birth_city
string
birth_country
string
Accepted country code. ISO 3166-1 alpha-2 codes.
birth_name
string
If applicable, birth name of the user.
nationalities
array
Nationalities of the user. ISO 3166 alpha-2 Codes.
address
object (Address)
Address. Must not be a P.O. box or c/o address.
postal_address
One Of
User postal address. Needs to be specified if different to the residential address, otherwise it is automatically populated.
Must match one of
{
"first_name": "Karl",
"last_name": "Schmidt",
"issuance_date": "2030-01-01",
"data_download_link": "https://bucket.customer.com/ident/user3.zip",
"document_type": "ID_CARD"
}
The request has been successfully accepted and will be processed asynchronously.
Empty response
id
string
required
Event unique identifier
created_at
string
required
Date and time when the event was created. RFC 3339-5, ISO8601 UTC
type
string
required
Event type
object
One Of
required
Must match one of
Must match one of
webhook_id
string
required
Webhook unique identifier.
{
"id": "2df83681-6a42-4837-a554-a8197335bcfa",
"created_at": "2021-11-19T13:06:51.980159529Z",
"type": "USER.CREATED",
"object": {
"created_at": "2021-11-22T09:04:42Z",
"updated_at": "2021-11-22T09:04:42Z",
"first_name": "Jane",
"last_name": "Doe",
"salutation": "SALUTATION_FEMALE",
"title": "PROF",
"birth_date": "1990-01-01",
"birth_city": "Berlin",
"birth_country": "DE",
"birth_name": "Smith",
"nationalities": [
"DE",
"CH"
],
"address": {
"address_line1": "Torstrasse",
"address_line2": "12a",
"city": "Berlin",
"country": "DE",
"postcode": "10115",
"state": "BE"
},
"id": "a1752f00-93d5-4b77-a148-959cd315581b",
"postal_address": {
"address_line1": "Thorstrasse",
"address_line2": "123",
"city": "Berlin",
"country": "DE",
"postcode": "10115",
"state": "BE"
},
"status": "ACTIVE"
},
"webhook_id": "1b097e06-8a14-4181-b72a-de0972a3c57b"
}
Request has been processed successfully.
Empty response
Was this page helpful?