API

Adyen user onboarding status

Gets the status of 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.

GET/v1/hq/integrations/adyen/users/{user_id}/onboarding

Authorization

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>

Response Body

application/json

curl -X GET "https://api.noona.is/v1/hq/integrations/adyen/users/string/onboarding"
{
  "onboarding_link": "string",
  "onboarded_at": "2019-08-24T14:15:22Z",
  "onboarding_status": "not_started",
  "error_codes": [
    "string"
  ],
  "transfer_instrument": {
    "type": "bank_account",
    "iban": "string"
  }
}