Path parameters
-
The ID of the team that the participants belong to.
GET /api/teams/{team}/participants
curl \
-X GET https://checkmango.com/api/teams/19/participants \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"id": "EST_ID_DOLORES_MINUS",
"type": "participants",
"attributes": {
"id": 1,
"team_id": 48,
"key": "EST_ID_DOLORES_MINUS",
"notes": null,
"created": {
"human": "1 second ago",
"string": "2024-04-08 10:42:02"
},
"updated": {
"human": "1 second ago",
"string": "2024-04-08 10:42:02"
}
},
"links": {
"self": {
"href": "http://checkmango.com/api/teams/48/participants/EST_ID_DOLORES_MINUS"
}
}
},
{
"id": "DOLOREM_AT_ARCHITECTO_EXPLICABO_MAXIME",
"type": "participants",
"attributes": {
"id": 2,
"team_id": 49,
"key": "DOLOREM_AT_ARCHITECTO_EXPLICABO_MAXIME",
"notes": null,
"created": {
"human": "1 second ago",
"string": "2024-04-08 10:42:02"
},
"updated": {
"human": "1 second ago",
"string": "2024-04-08 10:42:02"
}
},
"links": {
"self": {
"href": "http://checkmango.com/api/teams/49/participants/DOLOREM_AT_ARCHITECTO_EXPLICABO_MAXIME"
}
}
}
]
}
Response examples (403)
{
"message": "Unauthenticated."
}
Response examples (404)
{
"message": "Not Found"
}