Get All Chat Recipes
GET
/api/chats/recipesThis will fetch all chat recipes that a user is allowed to see.
Request
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
array of:
id
string <uuid>
optional
UUID of the recipe.
created_at
string
optional
Date (ISO 8601) that the Recipe was created at.
index
number | null
optional
Index to control order in user display.
name
string
required
User Defined name of this recipe.
Example
[
{
"name": "fugiat",
"created_at": "2088-07-15T00:59:39.961Z",
"id": "95dba4b7-0a7d-4960-af79-676671f404af",
"index": 1397
},
{
"name": "cum",
"created_at": "2097-08-21T20:38:39.363Z",
"index": 85513,
"id": "f98dfc1b-f87a-4a62-8d28-73d9b1edb008"
}
]
Last modified: a year ago