Get all legal entities with pagination, filters, and sorting
GET/sint/legalEntity/
Get all legal entities with pagination, filters, and sorting
Request
Query Parameters
- eq : ├®galit├®
- ne : diff├®rent (!=)
- lk : like. Pour les chaine de caractères, correspond au sql %valeur%
- lt : plus petit que (<)
- le : plus petit ou ├®gal (<=)
- gt : plus grand que (>)
- ge : plus grand ou ├®gal (>=)
The pagination you want to get, default 1,10 (page = 1; nb_elements = 10)
The filter you want to get, {champ}:{op}:{valeur},{champ_2}:{op_2}:{valeur_2}
The field names are specified in the web service documentation.
where {op} to be :
The orderby you want to get, {champ},{-champ_2}
The field names are specified in the web service documentation.
Sorting is ascending by default, for sorting descending the field must be preceded by the ÔÇ£-ÔÇØ sign.
Several filters can be combined by separating them with commas
Responses
- 200
- 401
- 4XX|5XX
List every LegalEntity, if it empty, there is no legalEntity in the database
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
LegalName
Brand
LegalForm
RCSlocation
RCSnumber
Is the company fully incorporated ?
DateConstitution
The share capital of the company, in cents
Is the company listed on the stock exchange
Place of quotation on the stock exchange
Is the company subject to VAT
VAT number including country prefix
Tax number
Free text
Activity Code
CSP Code
Code langague talk
Website url
Principal email
code Nas
[
{
"LegalName": "Olky Payment Service Provider",
"Brand": "Olkypay",
"LegalForm": "Limited Company",
"RCSlocation": "Nantes",
"RCSnumber": "RC NANTES 234 987 456",
"IsIncorporated": "true",
"DateOfIncorporation": "2011-05-23",
"ShareCapital": "1000000",
"IsListedOnStockExchange": "true",
"PlaceOfQuotation": "Paris",
"VATSubject": "true",
"VATNumber": "IE1234567T",
"NIF": "12345678",
"Comments": "free text for legal entity",
"ActivityCode": "2",
"CSPCode": "2",
"CodeLangue": "EN",
"identityUuid": "4895ae38-a3fa-4ace-bdef-cc31fe5526a0",
"websiteUrl": "www.example.com",
"mailAddress": "john.doe@olky.eu",
"codeNace": "A"
}
]
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
{
"code": "401",
"message": "JWT Token not found"
}
An error occured
- application/json
- Schema
- Example (from schema)
Schema
{
"success": "false",
"code": "400",
"internal_code": "3001",
"message": "Incorect data"
}