Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Successful response
The response is of type object[]
.
curl --request GET \
--url https://copilotz.com/rest/copilotz \
--header 'Authorization: Bearer <token>'
[
{
"name": "Your Copilotz Name",
"description": "Your Copilotz Description",
"backstory": "This is a simple backstory for your Copilotz. It's useful for defining its identity.",
"actions": [
1,
2,
3
],
"configs": [
1,
2
],
"job": 1
}
]
curl --request GET \
--url https://copilotz.com/rest/copilotz \
--header 'Authorization: Bearer <token>'
[
{
"name": "Your Copilotz Name",
"description": "Your Copilotz Description",
"backstory": "This is a simple backstory for your Copilotz. It's useful for defining its identity.",
"actions": [
1,
2,
3
],
"configs": [
1,
2
],
"job": 1
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful response
The response is of type object[]
.