Legal Entity Created
Developing
This webhook is triggerred whenever a legal entity is created.
Request
Add parameter in header Authorization
Example:Authorization: ********************
Body Params application/jsonRequired
{
"addedAt": "2019-08-24T14:15:22.123Z",
"name": "string",
"tradingName": "string",
"description": "string",
"logoUrl": "http://example.com",
"publicWebsiteAddress": "http://example.com",
"contactEmail": "user@example.com",
"contactUsLink": "http://example.com",
"vatNumber": "string",
"charityNumber": "string",
"childAgeLimit": 16,
"address1": "string",
"address2": "string",
"address3": "string",
"town": "string",
"county": "string",
"postcode": "string",
"currencyId": 1,
"timezone": "UK/London"
}
Request Code Samples
curl --location 'https://your-api-server.com' \
--header 'Webhook-Signature;' \
--header 'Webhook-Verb: legalEntities.created' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"addedAt": "2019-08-24T14:15:22.123Z",
"name": "string",
"tradingName": "string",
"description": "string",
"logoUrl": "http://example.com",
"publicWebsiteAddress": "http://example.com",
"contactEmail": "user@example.com",
"contactUsLink": "http://example.com",
"vatNumber": "string",
"charityNumber": "string",
"childAgeLimit": 16,
"address1": "string",
"address2": "string",
"address3": "string",
"town": "string",
"county": "string",
"postcode": "string",
"currencyId": 1,
"timezone": "UK/London"
}'
Responses
application/json
Modified at 2026-06-12 19:23:05