Get Participant.

GET /api/teams/{team}/participants/{participant}

Path parameters

  • team integer Required

    The ID of the team that the participant belongs to.

  • participant string Required

    The key of the participant.

Query parameters

  • include string

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

  • per_page integer

    The number of results to paginate by. Defaults to 15.

  • page integer

    The page number to return. Defaults to 1.

  • sort string

    Field to sort by. Defaults to 'id'.

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/{participant}
curl \
 -X GET https://checkmango.com/api/teams/13/participants/facilis \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": {
    "id": "UNDE_DEBITIS_VOLUPTAS_EST_EOS_DOLORE",
    "type": "participants",
    "attributes": {
      "id": 4,
      "team_id": 51,
      "key": "UNDE_DEBITIS_VOLUPTAS_EST_EOS_DOLORE",
      "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/51/participants/UNDE_DEBITIS_VOLUPTAS_EST_EOS_DOLORE"
      }
    }
  }
}
Response examples (403)
{
  "message": "Unauthenticated."
}
Response examples (404)
{
  "message": "Not Found"
}