We are currently in beta. If you have any feedback, please email us at tech@unyte.africa or learn more about our product at https://unyte.africa
curl --request GET \
--url https://dev.superpool.unyte.africa/api/v1/environments/ \
--header 'X-API-Key: <api-key>'
{
"count": 123,
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100",
"results": [
{
"environment_name": "<string>",
"test_mode": true,
"client_id": "<string>"
}
]
}
This endpoint retrieves all environments.
curl --request GET \
--url https://dev.superpool.unyte.africa/api/v1/environments/ \
--header 'X-API-Key: <api-key>'
{
"count": 123,
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100",
"results": [
{
"environment_name": "<string>",
"test_mode": true,
"client_id": "<string>"
}
]
}
Number of results to return per page.
The initial index from which to return the results.
The response is of type object
.