Metric Data Sources
The Bearer API key of your user more info.
an integer specifying the starting point (beginning with 0) when paging through a list of entities
0the maximum number of results when paging through a list of metric data sources
10The Metric Data Sources
GET /api/metric-data-sources HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
The Metric Data Sources
[
{
"id": 1,
"name": "text",
"type": "DATADOG",
"teams": [
{
"id": 1,
"name": "text"
}
],
"metadata": {
"region": "text",
"apiKey": "text",
"applicationKey": "text"
}
}
]The Bearer API key of your user more info.
The newly created Metric Data Source
POST /api/metric-data-sources HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 134
{
"name": "text",
"type": "DATADOG",
"teams": [
{
"id": 1,
"name": "text"
}
],
"metadata": {
"region": "text",
"apiKey": "text",
"applicationKey": "text"
}
}The newly created Metric Data Source
{
"id": 1,
"name": "text",
"type": "DATADOG",
"teams": [
{
"id": 1,
"name": "text"
}
],
"metadata": {
"region": "text",
"apiKey": "text",
"applicationKey": "text"
}
}The Bearer API key of your user more info.
entity ID
The requested Metric Data Source
GET /api/metric-data-sources/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
The requested Metric Data Source
{
"id": 1,
"name": "text",
"type": "DATADOG",
"teams": [
{
"id": 1,
"name": "text"
}
],
"metadata": {
"region": "text",
"apiKey": "text",
"applicationKey": "text"
}
}The Bearer API key of your user more info.
entity ID
The updated Metric Data Source
PUT /api/metric-data-sources/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 134
{
"name": "text",
"type": "DATADOG",
"teams": [
{
"id": 1,
"name": "text"
}
],
"metadata": {
"region": "text",
"apiKey": "text",
"applicationKey": "text"
}
}The updated Metric Data Source
{
"id": 1,
"name": "text",
"type": "DATADOG",
"teams": [
{
"id": 1,
"name": "text"
}
],
"metadata": {
"region": "text",
"apiKey": "text",
"applicationKey": "text"
}
}The Bearer API key of your user more info.
entity ID
Empty body delete response
DELETE /api/metric-data-sources/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
Empty body delete response
No content
Last updated
Was this helpful?