List all data sources for an SLA
GET/v1/slas/{sla_urn}/data-sources
List all data sources for an SLA
Path Parameters
sla_urn: string
Returns
sla_urn: string
A unique identifier for the SLA associated with this data source
vendor_urn: string
A unique identifier for the vendor associated with this data source
List all data sources for an SLA
curl https://developer.clarative.ai/v1/slas/$SLA_URN/data-sources \
-H "Authorization: Bearer $CLARATIVE_API_KEY"{
"monitor_data_sources": [
{
"description": "description",
"name": "name",
"urn": "urn",
"data_source_type": "MONITOR"
}
],
"sla_urn": "sla_urn",
"status_page_data_source": {
"excluded_product_tags": [
"string"
],
"included_product_tags": [
"string"
],
"urn": "urn",
"data_source_type": "STATUS_PAGE"
},
"vendor_urn": "vendor_urn"
}Returns Examples
{
"monitor_data_sources": [
{
"description": "description",
"name": "name",
"urn": "urn",
"data_source_type": "MONITOR"
}
],
"sla_urn": "sla_urn",
"status_page_data_source": {
"excluded_product_tags": [
"string"
],
"included_product_tags": [
"string"
],
"urn": "urn",
"data_source_type": "STATUS_PAGE"
},
"vendor_urn": "vendor_urn"
}