Create shared filter
curl --request POST \
--url https://api.cloudcapital.co/v1/cost-insights/shared-filters \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"organizationId": "550e8400-e29b-41d4-a716-446655440000",
"filterConfiguration": {
"filters": {
"inclusions": {
"accountIds": [
"123456789012",
"987654321098"
]
}
},
"groupBy": {
"dimension": "service",
"dateGrouping": "monthly"
}
}
}
'import requests
url = "https://api.cloudcapital.co/v1/cost-insights/shared-filters"
payload = {
"organizationId": "550e8400-e29b-41d4-a716-446655440000",
"filterConfiguration": {
"filters": { "inclusions": { "accountIds": ["123456789012", "987654321098"] } },
"groupBy": {
"dimension": "service",
"dateGrouping": "monthly"
}
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
organizationId: '550e8400-e29b-41d4-a716-446655440000',
filterConfiguration: {
filters: {inclusions: {accountIds: ['123456789012', '987654321098']}},
groupBy: {dimension: 'service', dateGrouping: 'monthly'}
}
})
};
fetch('https://api.cloudcapital.co/v1/cost-insights/shared-filters', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cloudcapital.co/v1/cost-insights/shared-filters",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'organizationId' => '550e8400-e29b-41d4-a716-446655440000',
'filterConfiguration' => [
'filters' => [
'inclusions' => [
'accountIds' => [
'123456789012',
'987654321098'
]
]
],
'groupBy' => [
'dimension' => 'service',
'dateGrouping' => 'monthly'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.cloudcapital.co/v1/cost-insights/shared-filters"
payload := strings.NewReader("{\n \"organizationId\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"filterConfiguration\": {\n \"filters\": {\n \"inclusions\": {\n \"accountIds\": [\n \"123456789012\",\n \"987654321098\"\n ]\n }\n },\n \"groupBy\": {\n \"dimension\": \"service\",\n \"dateGrouping\": \"monthly\"\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.cloudcapital.co/v1/cost-insights/shared-filters")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"organizationId\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"filterConfiguration\": {\n \"filters\": {\n \"inclusions\": {\n \"accountIds\": [\n \"123456789012\",\n \"987654321098\"\n ]\n }\n },\n \"groupBy\": {\n \"dimension\": \"service\",\n \"dateGrouping\": \"monthly\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cloudcapital.co/v1/cost-insights/shared-filters")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"organizationId\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"filterConfiguration\": {\n \"filters\": {\n \"inclusions\": {\n \"accountIds\": [\n \"123456789012\",\n \"987654321098\"\n ]\n }\n },\n \"groupBy\": {\n \"dimension\": \"service\",\n \"dateGrouping\": \"monthly\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"filterId": "<string>"
}
}{
"success": false,
"error": {
"message": "Invalid request. Please see message details.. Invalid input: expected object, received undefined (at groupBy)"
}
}{
"message": "Unauthorized"
}{
"success": false,
"error": {
"message": "Rate limit exceeded. Please retry after the specified time."
}
}Cost insights
Create shared filter
Store a shared filter configuration. Shared filters allow you to save complex filter and grouping combinations and share them with other team members via a unique ID.
POST
/
cost-insights
/
shared-filters
Create shared filter
curl --request POST \
--url https://api.cloudcapital.co/v1/cost-insights/shared-filters \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"organizationId": "550e8400-e29b-41d4-a716-446655440000",
"filterConfiguration": {
"filters": {
"inclusions": {
"accountIds": [
"123456789012",
"987654321098"
]
}
},
"groupBy": {
"dimension": "service",
"dateGrouping": "monthly"
}
}
}
'import requests
url = "https://api.cloudcapital.co/v1/cost-insights/shared-filters"
payload = {
"organizationId": "550e8400-e29b-41d4-a716-446655440000",
"filterConfiguration": {
"filters": { "inclusions": { "accountIds": ["123456789012", "987654321098"] } },
"groupBy": {
"dimension": "service",
"dateGrouping": "monthly"
}
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
organizationId: '550e8400-e29b-41d4-a716-446655440000',
filterConfiguration: {
filters: {inclusions: {accountIds: ['123456789012', '987654321098']}},
groupBy: {dimension: 'service', dateGrouping: 'monthly'}
}
})
};
fetch('https://api.cloudcapital.co/v1/cost-insights/shared-filters', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cloudcapital.co/v1/cost-insights/shared-filters",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'organizationId' => '550e8400-e29b-41d4-a716-446655440000',
'filterConfiguration' => [
'filters' => [
'inclusions' => [
'accountIds' => [
'123456789012',
'987654321098'
]
]
],
'groupBy' => [
'dimension' => 'service',
'dateGrouping' => 'monthly'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.cloudcapital.co/v1/cost-insights/shared-filters"
payload := strings.NewReader("{\n \"organizationId\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"filterConfiguration\": {\n \"filters\": {\n \"inclusions\": {\n \"accountIds\": [\n \"123456789012\",\n \"987654321098\"\n ]\n }\n },\n \"groupBy\": {\n \"dimension\": \"service\",\n \"dateGrouping\": \"monthly\"\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.cloudcapital.co/v1/cost-insights/shared-filters")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"organizationId\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"filterConfiguration\": {\n \"filters\": {\n \"inclusions\": {\n \"accountIds\": [\n \"123456789012\",\n \"987654321098\"\n ]\n }\n },\n \"groupBy\": {\n \"dimension\": \"service\",\n \"dateGrouping\": \"monthly\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cloudcapital.co/v1/cost-insights/shared-filters")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"organizationId\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"filterConfiguration\": {\n \"filters\": {\n \"inclusions\": {\n \"accountIds\": [\n \"123456789012\",\n \"987654321098\"\n ]\n }\n },\n \"groupBy\": {\n \"dimension\": \"service\",\n \"dateGrouping\": \"monthly\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"filterId": "<string>"
}
}{
"success": false,
"error": {
"message": "Invalid request. Please see message details.. Invalid input: expected object, received undefined (at groupBy)"
}
}{
"message": "Unauthorized"
}{
"success": false,
"error": {
"message": "Rate limit exceeded. Please retry after the specified time."
}
}Authorizations
API key authentication. Generate an API key from your
Cloud Capital dashboard under Settings > API keys.
Include it in the Authorization header as a Bearer token.
Body
application/json
Response
Shared filter created successfully
Successful HTTP responses wrap the endpoint-specific body in data.
Each operation's 200 response schema is this object merged (allOf)
with a data property referencing the payload schema for that endpoint.
⌘I

