Create a new address
POST/sint/address/new
Create a new address
Request
- application/json
Body
Data to send
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
Responses
- 200
- 401
- 4XX|5XX
Address created
- application/json
- Schema
- Example (from schema)
Schema
success boolean
uuid string
{
"success": "true",
"uuid": "25d2a808-aa55-4ce9-983b-ba6ae46fadc7"
}
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...