Path parameters
-
The ID of the team to show.
GET /api/teams/{team}/config
curl \
-X GET https://checkmango.com/api/teams/10/config \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": {
"id": "4",
"type": "team_config",
"attributes": {
"team_id": 4,
"experiments": {
"TEMPORA_ASPERIORES_VOLUPTATEM_TEMPORIBUS": {
"endpoint": "http://checkmango.com/api/teams/4/experiments/TEMPORA_ASPERIORES_VOLUPTATEM_TEMPORIBUS",
"algorithm": "blockRandomization",
"status": "draft",
"variant_count": 1,
"total_participants": 0,
"timeline": {
"created_at": "2024-04-08T10:42:02.000000Z",
"updated_at": "2024-04-08T10:42:02.000000Z",
"started_at": null,
"stopped_at": null
},
"variants": {
"ET_QUISQUAM_TEMPORE_OFFICIA": {
"control": false,
"participants": 0,
"impressions": 0,
"conversions": 0
}
}
}
}
}
}
}
Response examples (403)
{
"message": "Unauthenticated."
}
Response examples (404)
{
"message": "Not Found"
}