Get one address by UUID
GET/sint/address/:uuid
Get one address by UUID
Request
Path Parameters
uuid stringrequired
The UUID of the address you want to get
Responses
- 200
- 401
- 4XX|5XX
Returns the address corresponding to the UUID
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
UUID string
UUID
Address1 stringrequired
Address1
Address2 stringnullable
Address2
Address3 stringnullable
Address3
ZipCode stringnullable
Zip Code
Country stringrequired
Country
City stringnullable
City
AbstractEntityUUID string
NaturalPerson or LegalEntity UUID
Tag stringnullable
Tag
uuid stringnullable
[
{
"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",
"uuid": "4895ae38-a3fa-4ace-bdef-cc31fe5526a0"
}
]
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...