curl --request POST \
--url https://api.example.com/presets/{preset_id}/clone/ \
--header 'Authorization: Bearer <token>'{
"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>"
}Clone a system preset to create a user preset.
curl --request POST \
--url https://api.example.com/presets/{preset_id}/clone/ \
--header 'Authorization: Bearer <token>'{
"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>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?