List Participant's Experiments.

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

Path parameters

  • team integer Required

    The team.

  • participant string Required

    The participant.

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
    • data array[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
        • status 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
        • started object
          Hide started attributes Show started attributes object
          • human string
          • string string
        • stopped object
          Hide stopped attributes Show stopped 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}/participants/{participant}/experiments
curl \
 -X GET https://checkmango.com/api/teams/19/participants/repudiandae/experiments \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "id": "QUISQUAM_EAQUE_CONSEQUATUR_TEMPORIBUS",
      "type": "experiments",
      "attributes": {
        "id": 16,
        "team_id": 53,
        "key": "QUISQUAM_EAQUE_CONSEQUATUR_TEMPORIBUS",
        "description": null,
        "status": "draft",
        "created": {
          "human": "1 second ago",
          "string": "2024-04-08 10:42:02"
        },
        "updated": {
          "human": "1 second ago",
          "string": "2024-04-08 10:42:02"
        },
        "started": {
          "human": null,
          "string": null
        },
        "stopped": {
          "human": null,
          "string": null
        }
      },
      "links": {
        "self": {
          "href": "http://checkmango.com/api/teams/53/experiments/QUISQUAM_EAQUE_CONSEQUATUR_TEMPORIBUS"
        }
      }
    },
    {
      "id": "VOLUPTATE_EXPEDITA_AUTEM_QUAM_AUT_DELECTUS",
      "type": "experiments",
      "attributes": {
        "id": 17,
        "team_id": 55,
        "key": "VOLUPTATE_EXPEDITA_AUTEM_QUAM_AUT_DELECTUS",
        "description": "Eum aut voluptatibus sed sequi saepe autem accusamus accusamus. Et iusto est vero accusamus autem. Consequatur soluta quia harum mollitia ut et eaque. Qui minima et velit repudiandae dolores quas culpa.",
        "status": "draft",
        "created": {
          "human": "1 second ago",
          "string": "2024-04-08 10:42:02"
        },
        "updated": {
          "human": "1 second ago",
          "string": "2024-04-08 10:42:02"
        },
        "started": {
          "human": null,
          "string": null
        },
        "stopped": {
          "human": null,
          "string": null
        }
      },
      "links": {
        "self": {
          "href": "http://checkmango.com/api/teams/55/experiments/VOLUPTATE_EXPEDITA_AUTEM_QUAM_AUT_DELECTUS"
        }
      }
    }
  ]
}
Response examples (403)
{
  "message": "Unauthenticated."
}
Response examples (404)
{
  "message": "Not Found"
}