Sorry, no results found for "".
Returns a resource object of type item_type_filter.
1GET https://site-api.datocms.com/item-type-filters/:item_type_filter_id HTTP/1.12Authorization: Bearer YOUR-API-TOKEN3Accept: application/json4X-Api-Version: 3
1curl -g 'https://site-api.datocms.com/item-type-filters/:item_type_filter_id' \2 \3 -H "Authorization: Bearer YOUR-API-TOKEN" \4 -H "Accept: application/json" \5 -H "X-Api-Version: 3"
1await fetch(2 "https://site-api.datocms.com/item-type-filters/:item_type_filter_id",3 {4 headers: {5 Authorization: "Bearer YOUR-API-TOKEN",6 Accept: "application/json",7 "X-Api-Version": "3",8 },9 },10);
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 "type": "item_type_filter",10 "id": "FF-P5of6Qp-DD2w0xoaa6Q",11 "relationships": {12 "item_type": {13 "data": {14 "type": "item_type",15 "id": "DxMaW10UQiCmZcuuA-IkkA"16 }17 }18 },19 "attributes": {20 "name": "Draft posts",21 "filter": {22 "query": "foo bar",23 "fields": {24 "_status": {25 "eq": "draft"26 },27 "title": {28 "matches": {29 "pattern": "qux",30 "case_sensitive": "false",31 "regexp": "false"32 }33 }34 }35 },36 "columns": [37 {38 "name": "_preview",39 "width": 0.640 },41 {42 "name": "slug",43 "width": 0.144 },45 {46 "name": "_status",47 "width": 0.148 },49 {50 "name": "_updated_at",51 "width": 0.252 }53 ],54 "order_by": "_updated_at_ASC",55 "shared": true56 }57 }58}