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