Get Feature.

GET /api/teams/{team}/features/{feature}

Path parameters

  • team integer Required

    The ID of the team that the feature belongs to.

  • feature string Required

    The key of the feature to show.

Query parameters

  • include string

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

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data object
      Hide data attributes Show data attributes object
      • id string
      • type string
      • attributes object
        Hide attributes attributes Show attributes attributes object
        • id integer
        • team_id integer
        • key string
        • description string
        • enabled boolean
        • value string
        • created object
          Hide created attributes Show created attributes object
          • human string
          • string string
        • updated object
          Hide updated attributes Show updated attributes object
          • human string
          • string string
  • 403 application/json
    Hide response attribute Show response attribute object
    • message string
  • 404 application/json
    Hide response attribute Show response attribute object
    • message string
GET /api/teams/{team}/features/{feature}
curl \
 -X GET https://checkmango.com/api/teams/14/features/et \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": {
    "id": "UT_REICIENDIS_ET_FACILIS_PORRO",
    "type": "features",
    "attributes": {
      "id": 4,
      "team_id": 62,
      "key": "UT_REICIENDIS_ET_FACILIS_PORRO",
      "description": "Rem ut incidunt quia dolores. Ex sunt maxime sint. Repellendus similique quaerat ipsum explicabo totam quia et. Officiis aut maiores neque. Quo eos odit sapiente sint.\n\nExercitationem officia similique necessitatibus. Possimus ad velit labore laborum molestiae pariatur libero. Nesciunt id autem aliquam eaque odio repellat et omnis.\n\nEt autem non ea aut voluptatem. Cumque quas non qui vel sunt. Ad autem sunt labore labore voluptatum corporis quisquam id.",
      "enabled": true,
      "value": 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/62/features/UT_REICIENDIS_ET_FACILIS_PORRO"
      }
    }
  }
}
Response examples (403)
{
  "message": "Unauthenticated."
}
Response examples (404)
{
  "message": "Not Found"
}