Get the email alias of the UUID
GET/sint/email/:uuid
Get the email alias of the UUID
Request
Path Parameters
uuid stringrequired
The UUID of the AliasEmail you want to get
Responses
- 200
- 401
- 4XX|5XX
Return a Mail alias
- application/json
- Schema
- Example (from schema)
Schema
UUID string
Owner stringrequired
NaturalPerson or LegalEntity UUID
Mail stringrequiredMail
Actif boolean
Default value: true
is Actif (default = true)
Public boolean
Default value: false
is Public (default = false)
LinkNPLE string
NPLE link UUID
valid booleannullable
Default value: false
is Valid (default = false)
{
"UUID": "4895ae38-a3fa-4ace-bdef-cc31fe5526a0",
"Owner": "4895ae38-a3fa-4ace-bdef-cc31fe5526a0",
"Mail": "j.doe@example.com",
"Actif": "true",
"Public": "true",
"LinkNPLE": "4895ae38-a3fa-4ace-bdef-cc31fe5526a0",
"valid": "true"
}
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...