For all operations listed below you will need to provide HTTP Request Header Authorization param. For more details see Login/Auth page.
Get the list of Reference Types
Route: /reference_type
Method: GET
Example result
"entities": [
{
"name": "Name of the Reference-Type",
"is_active": "1",
"id": "1",
"created_at": "Creation Time",
"updated_at": "Update Time"
},
{
...
}
...
"total": 123,
"result": true
Get reference type by internal ID
Route: /reference_type/{internal_id}
Method: GET
Example result
{
"entity": {
"name": "Name of the Reference-Type",
"is_active": "1",
"id": "1",
"created_at": "Creation Time",
"updated_at": "Update Time"
},
"result": true
}