API

Adyen company onboarding status

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

GET/v1/hq/integrations/adyen/companies/{company_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

company_id*string

Company ID

Query Parameters

select?array<string>
expand?array<string>

Response Body

application/json

curl -X GET "https://api.noona.is/v1/hq/integrations/adyen/companies/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"
  }
}