curl --request GET \
--url https://api.example.com/api/v1/prompts/ \
--header 'Authorization: Bearer <token>'{
"prompts": [
{
"id": "<string>",
"text": "<string>",
"type": "SYSTEM",
"version": 123,
"status": "ACTIVE",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>"
}
],
"total": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
x >= 01 <= x <= 100curl --request GET \
--url https://api.example.com/api/v1/prompts/ \
--header 'Authorization: Bearer <token>'{
"prompts": [
{
"id": "<string>",
"text": "<string>",
"type": "SYSTEM",
"version": 123,
"status": "ACTIVE",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"created_by": "<string>"
}
],
"total": 123
}