Get Current Team.

GET /api/current-team

Responses

GET /api/current-team
curl \
 -X GET https://checkmango.com/api/current-team \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": {
    "id": "7",
    "type": "teams",
    "attributes": {
      "id": 7,
      "name": "Feeney-Hills",
      "events_count": 0,
      "experiments_count": 0,
      "participants_count": 0,
      "is_free": false,
      "api_requests": 0,
      "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/7"
      }
    }
  }
}
Response examples (403)
{
  "message": "Unauthenticated."
}
Response examples (404)
{
  "message": "Not Found"
}