The KYC Service allows you to verify your PSUs before they can initiate payments. KYC is completed via redirection to Open Payments' hosted flow, where the PSU can submit required identity and verification data. Creating a new KYC process on an organization generates a URL to the KYC webform, which is accessible for 24 hours. This guide shows you how to initiate a KYC process.
For requests to the KYC Service API, you need an access token with
scopeset topaymentinitiationcorporate.
1. Create KYC
Endpoint
Code
Path Parameter
| Name | Type | Description |
|---|---|---|
| PSU-Corporate-ID | string | The Corporate ID of the PSU when acting on behalf of an organization, e.g. Org. nummer for SE, KVK for NL. |
Query Parameter
| Name | Type | Description |
|---|---|---|
| countryCode | string | ISO country code for the country of the organization. |
Request Headers
| Name | Type | Description |
|---|---|---|
| X-Request-ID | string(uuid) | The ID of the request, unique to the call, as determined by the initiating party. |
Code
Response
Code
The URL in the response directs the PSU to the webform, where they will be guided through the KYC process.
The KYC webform can be completed by a PSU with or without signatory rights for the organization. If the PSU does not have signatory rights, the link to the completed form can be shared with an authorised signatory for review and signing.
The webform URL expires after 24 hours. If the form is not completed and signed within this time, a new URL must be generated.
2. Get KYC Status
Once the form is submitted, you can check if the KYC was successful by making the following request.
Endpoint
Code
Path Parameter
| Name | Type | Description |
|---|---|---|
| PSU-Corporate-ID | string | The Corporate ID of the PSU when acting on behalf of an organization, e.g. Org. nummer for SE, KVK for NL. |
Request Headers
| Name | Type | Description |
|---|---|---|
| X-Request-ID | string(uuid) | The ID of the request, unique to the call, as determined by the initiating party. |
Code
Response
Code
When the kycStatus is Valid, the organization can start making payments.

