Logo
Adyen APIs API Documentation

Create a legal entity for a trust in Australia

POST {{baseUrl}}/legalEntities

Creates a legal entity. This resource contains information about the user that will be onboarded in your platform. Adyen uses this information to perform verification checks as required by payment industry regulations. Adyen informs you of the verification results through webhooks or API responses.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string
Accept
string
x-requested-verification-code
null Use a suberror code as your requested verification code. You can include one code at a time in your request header. Requested verification codes can only be used in your test environment.




RESPONSES

status OK

{ "trust": { "countryOfGoverningLaw": "AU", "doingBusinessAs": "West's Store", "name": "Example Trust", "registeredAddress": { "city": "Sydney", "country": "AU", "postalCode": "1197", "stateOrProvince": "NSW", "street": "Winfield Avenue" }, "taxInformation": [{ "country": "AU", "number": "12345678901", "type": "ABN" }], "type": "fixedUnitTrust", "undefinedBeneficiaryInfo": [{ "description": "My future children", "reference": "SE322KH223222J5HJ6JRB75HQ" }] }, "type": "trust", "id": "LE322KH223222J5HJ6JRB75C5" }



Curl
curl -X POST 'https://kyc-test.adyen.com/lem/v3/legalEntities' -H 'Content-Type: application/json' -H 'Accept: application/json' -H 'x-requested-verification-code: ' -d '{"type":"trust","trust":{"name":"Example Trust","type":"fixedUnitTrust","doingBusinessAs":"West's Store","countryOfGoverningLaw":"AU","taxInformation":[{"country":"AU","type":"ABN","number":"12345678123"}],"registeredAddress":{"street":"Winfield Avenue","city":"Sydney","postalCode":"1197","stateOrProvince":"NSW","country":"AU"},"undefinedBeneficiaryInfo":[{"description":"My future children"}]}}'

ENDPOINTS