Entries of some categories have a status_id property, which designates which status they have.
In the cuture, campaigns will be able to define their own statuses.
| Method | URI | Headers |
|---|---|---|
| GET/HEAD | campaigns/{campaign.id}/entity_types |
Default |
{
"data": [
{
"data": [
{
"id": 1,
"key": "alive",
"is_default": true,
"category_id": 1
},
{
"id": 2,
"key": "missing",
"is_default": false,
"category_id": 1
},
{
"id": 3,
"key": "dead",
"is_default": false,
"category_id": 1
},
{
"id": 4,
"key": "dead",
"is_default": false,
"category_id": 20
},
{
"id": 5,
"key": "extinct",
"is_default": false,
"category_id": 20
},
{
"id": 6,
"key": "destroyed",
"is_default": false,
"category_id": 3
}
]
}
]
}