Register OAuth Client
How to Create an OAuth Client
POST /user/{user_id}/oauth-clientcurl -X POST "https://api.bunq.com/v1/user/{user_id}/oauth-client" \
-H "Content-Type: application/json" \
-H "Cache-Control: no-cache" \
-H "User-Agent: YourServiceName" \
-H "X-Bunq-Language: en_US" \
-H "X-Bunq-Region: nl_NL" \
-H "X-Bunq-Geolocation: 0 0 0 0 000" \
-H "X-Bunq-Client-Authentication: your_session_token" \
-H "X-Bunq-Client-Request-Id: 550e8400-e29b-41d4-a716-446655440000" \
-H "X-Bunq-Client-Signature: base64_encoded_signature_of_payload" \
-d '[{
"status": "ACTIVE",
"display_name": "My Cool App",
"redirect_url": "https://myapp.com/oauth/callback"
}]'Last updated
Was this helpful?