All user related paths.
/usersReturns the list of all users.
sortstringSort the result by created_at, updated_at.
orderstringSort order of the result list if the sort parameter is specified. Use ASC for ascending or DESC for descending sort order.
offsetintUse the offset argument to specify where in the list of results to start when returning items for a particular query.
limitintUse 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"
}
]
}/usersCreates a user.
Must match one of
first_namestringrequired
First name(s) of the user. Please include all first and middle names of the user.
last_namestringrequired
Last name of the user.
salutationstringSalutation of the user used in reports and statements.
titlestringTitle of the user used in reports and statements.
birth_datestringrequired
Birth date of the user in YYYY-MM-DD format. RFC 3339, section 5.6
birth_citystringbirth_countrystringAccepted country code. ISO 3166-1 alpha-2 codes.
birth_namestringIf applicable, birth name of the user.
nationalitiesarrayrequired
Nationalities of the user. ISO 3166 alpha-2 Codes.
Accepted country code. ISO 3166-1 alpha-2 codes.
addressobject (Address)required
Address. Must not be a P.O. box or c/o address.
postal_addressOne OfUser postal address. Needs to be specified if different to the residential address, otherwise it is automatically populated.
Must match one of
branch_idstringUnique identifier of the market the user is onboarded on. Only relevant if the client is operating in different markets and the client is configured accordingly
{
"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_idstringrequired
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_idstringrequired
User unique identifier.
The request has been successfully accepted and will be processed asynchronously.
Empty response
/users/{user_id}/data_change_requestsRequests a data change for a user specified by ID.
Must match one of
first_namestringFirst name of the user.
last_namestringLast name of the user.
salutationstringSalutation of the user used in reports and statements.
titlestringTitle of the user used in reports and statements.
birth_datestringBirth date of the user in YYYY-MM-DD format. RFC 3339, section 5.6
birth_citystringbirth_countrystringAccepted country code. ISO 3166-1 alpha-2 codes.
birth_namestringIf applicable, birth name of the user.
nationalitiesarrayNationalities of the user. ISO 3166 alpha-2 Codes.
Accepted country code. ISO 3166-1 alpha-2 codes.
addressobject (Address)Address. Must not be a P.O. box or c/o address.
postal_addressOne OfUser postal address. Needs to be specified if different to the residential address, otherwise it is automatically populated.
Must match one of
branch_idstringUnique identifier of the market the user is onboarded on. Only relevant if the client is operating in different markets and the client is configured accordingly
{
"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
idstringrequired
Event unique identifier
created_atstringrequired
Date and time when the event was created. RFC 3339-5, ISO8601 UTC
typestringrequired
Event type
objectOne Ofrequired
Must match one of
Must match one of
webhook_idstringrequired
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",
"branch_id": "e6373bfa-ff12-4004-8de9-747ac96764da"
},
"webhook_id": "1b097e06-8a14-4181-b72a-de0972a3c57b"
}Request has been processed successfully.
Empty response
Was this page helpful?