curl --request GET \
--url https://api.example.com/presets/system/ \
--header 'Authorization: Bearer <token>'{
"presets": [
{
"id": "<string>",
"email": "<string>",
"preset_type": "<string>",
"title": "<string>",
"prompt_ids": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"icon": "<string>",
"category": "<string>"
}
],
"total": 123
}Get only system presets.
curl --request GET \
--url https://api.example.com/presets/system/ \
--header 'Authorization: Bearer <token>'{
"presets": [
{
"id": "<string>",
"email": "<string>",
"preset_type": "<string>",
"title": "<string>",
"prompt_ids": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"icon": "<string>",
"category": "<string>"
}
],
"total": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?