Created leiLookup (markdown)

master
Igors Savins 2021-01-07 09:02:48 +02:00
parent 492d867bd6
commit 0b37fc020a
1 changed files with 39 additions and 0 deletions

39
leiLookup.md Normal file

@ -0,0 +1,39 @@
### Overview
LEI number or company name search will reveal the information contained within a Legal Entity Identifier. It can be used to check the validity of an LEI number or ensure that any information held on an entity is up to date.
### Request parameters
- query - The name of the company or lei code
### Response
- "result" - array of objects entities
- "leiNumber" - lei code,
- "nextRenewalDate": Date,
- "entityStatus": entity status,
- "leiStatus": lei status,
- "legalName": Name of the Legal Entity noting that accuracy here helps the overall process flow and accuracy of any potential duplicate test. e.g. ABC Limited,
- "registrationAuthorityEntityId": Company Number for the Legal Entity,
- "entityLegalFormCode": ISO standard 20275 Financial Services Entity Legal Forms (ELF),
- "legalJurisdiction": Format of ISO 3166-2,
- "legalState": state,
- "legalCountry": ISO code,
- "legalCity": city,
- "legalPostal": postal code,
- "legalfirstAddressLine": address,
- "hqState": headquarters state,
- "hqCountry": ISO code,
- "hqCity": headquarters city,
- "hqPostal": headquarters postal code,
- "hqfirstAddressLine": headquarters address
- "success" - success code (true)
```
curl --location --request GET 'https://my.gogetssl.com/api/lei/lookup?auth_key={{V1_API_TOKEN}}&query=google'
```