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