Adyen company onboarding
Initiates or resumes the Adyen KYC process for a company.
The onboarding process is a series of steps that must be completed before a company can receive payments through Adyen.
POST
/v1/hq/integrations/adyen/companies/{company_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
company_id*string
Company 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/companies/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"
}
}