Get marital status
This operation allow you to get the marital statuses catalog information.
HTTP Request
GET /catalogs/marital_status
Header Parameters
Header | Description |
---|---|
Authorization required | The Bearer token created in Get authorization Token |
Content-Type required | application/json |
Example JSON Request:
GET /catalogs/marital_status
Example JSON Response:
{
"success": true,
"code": 0,
"message": "OK",
"data": {
"marital_status": [
{
"key": "SOLTERO",
"value": "S",
"description": ""
},
{
"key": "CASADO",
"value": "C",
"description": ""
}
]
}
}