Number of APIs: 29
The Legal Entity Management API enables you to manage legal entities that contain information required for verification. Your Adyen contact will provide your API credential and an API key. To connect to the API, add an Alternatively, you can use the username and password of your API credential to connect to the API using basic authentication. For example: The Legal Entity Management API supports versioning using a version suffix in the endpoint URL. This suffix has the following format: For example:
When going live, your Adyen contact will provide your API credential for the live environment. You can then use the API key or the username and password to send requests to Authentication
X-API-Key
header with the API key as the value. For example:curl
-H "X-API-Key: YOUR_API_KEY" \n-H "Content-Type: application/json" \n...
curl
-U "ws_123456@Scope.Company_YOUR_COMPANY_ACCOUNT":"YourWsPassword" \n-H "Content-Type: application/json" \n...
Versioning
vXX
, where XX is the version number.
https://kyc-test.adyen.com/lem/v3/legalEntities
Going live
https://kyc-live.adyen.com/lem/v3
.
POST {{baseUrl}}/legalEntities
GET {{baseUrl}}/legalEntities/:id
PATCH {{baseUrl}}/legalEntities/:id
GET {{baseUrl}}/legalEntities/:id/businessLines
POST {{baseUrl}}/legalEntities/:id/checkVerificationErrors
POST {{baseUrl}}/legalEntities/:id/confirmDataReview
POST {{baseUrl}}/legalEntities/:id/onboardingLinks
GET {{baseUrl}}/themes/:id
POST {{baseUrl}}/businessLines
ENDPOINTS