Chapter 2 Creating a user provision

Provisioning a user is the initial step in the process of creating a user account within the bunq platform. This step involves assigning basic user attributes and configurations, such as unique identifiers, contact method, and necessary personal details. By completing this step, you obtain an API Key in order to do actions on-behalf-of the user (such as finalizing the onboarding and then creating monetary accounts, cards, payments etc).

Endpoint:

POST /v1/partner-user-provision

{
    "external_uuid": "550e8400-e29b-41d4-a716-446655440000",
    "pointer": {
        "type": "EMAIL",
        "value": "[email protected]",
        "name": "[email protected]"
    },
    "products": ["USER_VERIFIED"]
}

Parameters:

Field
Type
Required
Description

external_uuid

string

Yes

Unique identifier for this provision request. Must be a valid UUID.

pointer

object

Yes

User identification pointer (email, phone, etc.)

pointer.type

string

Yes

Type of pointer.

Can either be:

EMAIL, PHONE_NUMBER

pointer.value

string

Yes

The actual pointer value (email address, phone number)

pointer.name

string

Yes

Display name for the pointer

products

array

Yes

List of products to provision for the user. In this case, USER_VERIFIED

Response:

The response contains the provision_id used for monitoring. Save this ID for monitoring the provision status.

Last updated

Was this helpful?