Create a new user in the Payward system.
curl --request POST \
--url https://nexus.kraken.com/b2b/users \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"external_id": "<string>",
"tos_version_accepted": 123,
"full_name": {
"first_name": "<string>",
"last_name": "<string>",
"middle_name": "<string>"
},
"date_of_birth": "2023-12-25",
"residence": {
"line1": "<string>",
"city": "<string>",
"postal_code": "<string>",
"country": "<unknown>",
"line2": "<string>",
"province": "<string>"
},
"phone": "<string>",
"nationalities": [
"<unknown>"
],
"occupation": "agriculture",
"employer_name": "<string>",
"client_identifier": {
"type": "concat",
"value": "<string>",
"calculated_at": "2023-11-07T05:31:56Z"
},
"city_of_birth": "<string>",
"country_of_birth": "<unknown>",
"tax_ids": [
{
"id": "<string>",
"issuing_country": "<unknown>"
}
],
"language": "<string>"
}
'{
"result": {
"user": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The "API-Key" header should contain your API key.
Authenticated requests should be signed with the "API-Sign" header, using a signature generated with your private key, nonce, encoded payload, and URI path.
The target version of the Embed API to use. The API version name is based on the date when the API version was released. For example, the API version 2025-04-15 was released on April 15, 2025.
2025-04-15 The email associated with the account.
An external user ID for partners to link their user ID to a Payward account.
Versions of Payward's Terms of Service accepted by the user
User's full name
Show child attributes
User's date of birth
User's residential address
Show child attributes
Phone number in E.164 format
^\+?[1-9]\d{1,14}$User's nationalities
User's occupation
agriculture, business_management, computers_and_it, construction, education, finance, government, healthcare, hospitality, manufacturing, marketing, media, other, science, self_employed, student, transportation, unemployed, employed Name of user's employer
Identifier assigned by the partner platform
Show child attributes
User's city of birth
User's country of birth
User's tax ID
Show child attributes
Response
Show child attributes
curl --request POST \
--url https://nexus.kraken.com/b2b/users \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"external_id": "<string>",
"tos_version_accepted": 123,
"full_name": {
"first_name": "<string>",
"last_name": "<string>",
"middle_name": "<string>"
},
"date_of_birth": "2023-12-25",
"residence": {
"line1": "<string>",
"city": "<string>",
"postal_code": "<string>",
"country": "<unknown>",
"line2": "<string>",
"province": "<string>"
},
"phone": "<string>",
"nationalities": [
"<unknown>"
],
"occupation": "agriculture",
"employer_name": "<string>",
"client_identifier": {
"type": "concat",
"value": "<string>",
"calculated_at": "2023-11-07T05:31:56Z"
},
"city_of_birth": "<string>",
"country_of_birth": "<unknown>",
"tax_ids": [
{
"id": "<string>",
"issuing_country": "<unknown>"
}
],
"language": "<string>"
}
'{
"result": {
"user": "<string>"
}
}