Update an exploration group

Updates an existing exploration group by its ID.

PATCH https://telemetry.betterstack.com/api/v2/exploration-groups/{id}

URL parameters

id
required integer

Headers

Authorization
required string

Body parameters

name
required string
200

Response body

{
  "data": {
    "id": 456,
    "type": "exploration_group",
    "attributes": {
      "name": "Updated Group Name",
      "created_at": "2026-02-20T10:00:00Z",
      "updated_at": "2026-02-24T12:00:00Z"
    }
  }
}
404

Example Request

cURL
curl --request PATCH \
  --url https://telemetry.betterstack.com/api/v2/exploration-groups/456 \
  --header "Authorization: Bearer $TOKEN" \
  --header "Content-Type: application/json" \
  --data '{
    "name": "Updated Group Name"
  }'