Skip to main content
GET
/
api
/
v1
/
config
/
services
{
  "page": {
    "next_token": "<string>"
  },
  "services": [
    {
      "name": "<string>",
      "team_slug": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "notification_policy_slug": "<string>",
      "slug": "<string>",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

API-Token
string
header
required

Chronosphere API token

Query Parameters

page.max_size
integer<int64>

Sets the preferred number of items to return per page. If set to 0, the server will use its default value. Regardless of the value specified, clients must never assume how many items will be returned.

page.token
string

An opaque page token that identifies which page the client should request. An empty value indicates the first page.

slugs
string[]

Filters results by slug, where any Service with a matching slug in the given list that matches all other filters is returned.

team_slugs
string[]

Filters results by team_slug, where any Service with a matching team_slug in the given list that matches all other filters is returned.

names
string[]

Filters results by name, where any Service with a matching name in the given list that matches all other filters is returned.

notification_policy_slugs
string[]

Filters results by notification_policy_slug, where any Service with a matching notification_policy_slug in the given list that matches all other filters is returned.

Response

A successful response.

page
object
services
object[]