Get all of yours clients' addresses
GET/sint/address/
Get all of yours clients' addresses
Request
Responses
- 200
- 401
- 4XX|5XX
List every address, if it empty, there is no address in the database
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
UUID stringrequired
UUID
Address1 stringrequired
Address1
Address2 stringnullable
Address2
Address3 stringnullable
Address3
ZipCode stringnullable
Zip Code
Country stringrequired
Country
City stringnullable
City
AbstractEntityUUID stringrequired
NaturalPerson or LegalEntity UUID
Tag stringnullable
Tag
isPrincipalAddress booleannullable
Default value: false
isPrincipalAddress
[
{
"UUID": "4895ae38-a3fa-4ace-bdef-cc31fe5526a0",
"Address1": "Champ de Mars",
"Address2": "5 Av. Anatole France",
"Address3": "",
"ZipCode": "75007",
"Country": "LU",
"City": "Paris",
"AbstractEntityUUID": "4895ae38-a3fa-4ace-bdef-cc31fe5526a0",
"Tag": "Home",
"isPrincipalAddress": "false"
}
]
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
code integer
message string
{
"code": "401",
"message": "JWT Token not found"
}
An error occured
- application/json
- Schema
- Example (from schema)
Schema
success boolean
code integer
internal_code integer
message string
{
"success": "false",
"code": "400",
"internal_code": "3001",
"message": "Incorect data"
}
Loading...