API Documentation
Hooks
Step
List and Search
GET
/
rest
/
steps
Copy
curl --request GET \
--url https://copilotz.com/rest/steps \
--header 'Authorization: Bearer <token>'
Copy
[
{
"name": "Gather User Information",
"description": "This step collects user information necessary for processing.",
"instructions": "Collect the user's location and preferences.",
"submitWhen": "User has provided the location from where it wants to check the weather.",
"job": 2,
"next": 2
}
]
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[]
.
Copy
curl --request GET \
--url https://copilotz.com/rest/steps \
--header 'Authorization: Bearer <token>'
Copy
[
{
"name": "Gather User Information",
"description": "This step collects user information necessary for processing.",
"instructions": "Collect the user's location and preferences.",
"submitWhen": "User has provided the location from where it wants to check the weather.",
"job": 2,
"next": 2
}
]
Assistant
Responses are generated using AI and may contain mistakes.