Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://prod.featherhq.com/api/v1/testing-lab/scenarios \
--header 'Authorization: Bearer <token>'{
"count": 123,
"next": "<string>",
"previous": "<string>",
"results": [
{
"id": 123,
"name": "<string>",
"personality": 123,
"personality_name": "<string>",
"phone_number": "<string>",
"instructions": "<string>",
"expected_outcome_prompt": "<string>",
"scenario_language": "<string>",
"tags": [
"<string>"
]
}
]
}curl --request GET \
--url https://prod.featherhq.com/api/v1/testing-lab/scenarios \
--header 'Authorization: Bearer <token>'{
"count": 123,
"next": "<string>",
"previous": "<string>",
"results": [
{
"id": 123,
"name": "<string>",
"personality": 123,
"personality_name": "<string>",
"phone_number": "<string>",
"instructions": "<string>",
"expected_outcome_prompt": "<string>",
"scenario_language": "<string>",
"tags": [
"<string>"
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.