List Participants.

GET /api/teams/{team}/participants

Path parameters

  • team integer Required

    The ID of the team that the participants belong to.

Query parameters

  • include string

    Comma-separated list of relationships to include in the response.

  • sort string

    Field to sort by. Defaults to 'id'.

  • page integer

    Page number to return.

  • per_page integer

    Number of items to return in a page. Defaults to 15.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
  • 403 application/json
    Hide response attribute Show response attribute object
  • 404 application/json
    Hide response attribute Show response attribute object
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"
}