Adyen user onboarding
Initiates or resumes the Adyen KYC process for a user.
This is only applicable for users that issue their own invoices.
The onboarding process is a series of steps that must be completed before a user can receive payments through Adyen.
POST
/v1/hq/integrations/adyen/users/{user_id}/onboardingAuthorization
BearerTokenAuth
AuthorizationBearer <token>
The Noona HQ API uses Bearer token for authentication.
Endpoints that return generic information that does not contain sensitive data do not require authentication. Endpoints that require authentication are specifically marked in the documentation.
Authorization: Bearer your-token
In: header
Path Parameters
user_id*string
User ID
Query Parameters
select?array<string>
expand?array<string>
Request Body
application/json
redirect_url*string
The URL that Adyen should redirect to after the onboarding process is complete.
Response Body
application/json
curl -X POST "https://api.noona.is/v1/hq/integrations/adyen/users/string/onboarding" \ -H "Content-Type: application/json" \ -d '{ "redirect_url": "string" }'{
"onboarding_link": "string",
"onboarded_at": "2019-08-24T14:15:22Z",
"onboarding_status": "not_started",
"error_codes": [
"string"
],
"transfer_instrument": {
"type": "bank_account",
"iban": "string"
}
}