Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Fieldset

List all fieldsets

Returns

Returns an array of resource objects of type fieldset.

Examples

1
GET https://site-api.datocms.com/item-types/:model_id_or_api_key/fieldsets HTTP/1.1
2
Authorization: Bearer YOUR-API-TOKEN
3
Accept: application/json
4
X-Api-Version: 3
Terminal window
1
curl -g 'https://site-api.datocms.com/item-types/:model_id_or_api_key/fieldsets' \
2
\
3
-H "Authorization: Bearer YOUR-API-TOKEN" \
4
-H "Accept: application/json" \
5
-H "X-Api-Version: 3"
1
await fetch(
2
"https://site-api.datocms.com/item-types/:model_id_or_api_key/fieldsets",
3
{
4
headers: {
5
Authorization: "Bearer YOUR-API-TOKEN",
6
Accept: "application/json",
7
"X-Api-Version": "3",
8
},
9
},
10
);
1
HTTP/1.1 200 OK
2
Content-Type: application/json
3
Cache-Control: cache-control: max-age=0, private, must-revalidate
4
X-RateLimit-Limit: 30
5
X-RateLimit-Remaining: 28
6
7
{
8
"data": [
9
{
10
"type": "fieldset",
11
"id": "93Y1C2sySkG4Eg0atBRIwg",
12
"attributes": {
13
"title": "SEO-related fields",
14
"hint": "Please fill in these fields!",
15
"position": 1,
16
"collapsible": true,
17
"start_collapsed": false
18
},
19
"relationships": {
20
"item_type": {
21
"data": {
22
"type": "item_type",
23
"id": "DxMaW10UQiCmZcuuA-IkkA"
24
}
25
}
26
}
27
}
28
]
29
}