Sorry, no results found for "".
Returns an array of resource objects of type item_type_filter.
1GET https://site-api.datocms.com/item-type-filters HTTP/1.12Authorization: Bearer YOUR-API-TOKEN3Accept: application/json4X-Api-Version: 3
1curl -g 'https://site-api.datocms.com/item-type-filters' \2 \3 -H "Authorization: Bearer YOUR-API-TOKEN" \4 -H "Accept: application/json" \5 -H "X-Api-Version: 3"
1await fetch("https://site-api.datocms.com/item-type-filters", {2 headers: {3 Authorization: "Bearer YOUR-API-TOKEN",4 Accept: "application/json",5 "X-Api-Version": "3",6 },7});
1HTTP/1.1 200 OK2Content-Type: application/json3Cache-Control: cache-control: max-age=0, private, must-revalidate4X-RateLimit-Limit: 305X-RateLimit-Remaining: 286 7{8 "data": [9 {10 "type": "item_type_filter",11 "id": "FF-P5of6Qp-DD2w0xoaa6Q",12 "relationships": {13 "item_type": {14 "data": {15 "type": "item_type",16 "id": "DxMaW10UQiCmZcuuA-IkkA"17 }18 }19 },20 "attributes": {21 "name": "Draft posts",22 "filter": {23 "query": "foo bar",24 "fields": {25 "_status": {26 "eq": "draft"27 },28 "title": {29 "matches": {30 "pattern": "qux",31 "case_sensitive": "false",32 "regexp": "false"33 }34 }35 }36 },37 "columns": [38 {39 "name": "_preview",40 "width": 0.641 },42 {43 "name": "slug",44 "width": 0.145 },46 {47 "name": "_status",48 "width": 0.149 },50 {51 "name": "_updated_at",52 "width": 0.253 }54 ],55 "order_by": "_updated_at_ASC",56 "shared": true57 }58 }59 ]60}