/v2/api/entity base and authenticated with a Bearer token. The response is a paginated collection (20 per page by default).?page=<n>. The response carries current_page, last_page, per_page, and total.filter[<field>][<operator>]=<value> (for example filter[status][equal]=1). Any existing column can be filtered.sort[<field>]=asc|desc (for example sort[id]=desc). When no sort is given the default order is id descending.{dataLevel} path segment selects the listing data level (use 1).curl --location --globoff 'https://.daftara.com/v2/api/entity/follow_up_status/list/1?page=1' \
--header 'Accept: application/json' \
--header 'apikey: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'{
"current_page": 0,
"data": [
{
"id": 0,
"item_type": 0,
"name": "string",
"color": "string",
"status": 0,
"staff_id": 0,
"created": "string",
"modified": "string",
"deleted": 0,
"entity_key": "string",
"display_order": 0
}
],
"first_page_url": "string",
"from": 0,
"last_page": 0,
"last_page_url": "string",
"next_page_url": "string",
"path": "string",
"per_page": 0,
"prev_page_url": "string",
"to": 0,
"total": 0
}