Declare a destination a member of a capacity domain
curl --request POST \
--url https://api.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members \
--header 'Content-Type: application/json' \
--header 'x-arklow-auth: <api-key>' \
--data '
{
"destination_id": "<string>"
}
'import requests
url = "https://api.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members"
payload = { "destination_id": "<string>" }
headers = {
"x-arklow-auth": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-arklow-auth': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({destination_id: '<string>'})
};
fetch('https://api.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members', 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.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members",
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([
'destination_id' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-arklow-auth: <api-key>"
],
]);
$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.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members"
payload := strings.NewReader("{\n \"destination_id\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-arklow-auth", "<api-key>")
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.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members")
.header("x-arklow-auth", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"destination_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-arklow-auth"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"destination_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"org_id": "<string>",
"name": "<string>",
"provenance": "<string>",
"declared_budget": 123,
"learned_budget": 123,
"learned_budget_expires_at": "2023-11-07T05:31:56Z",
"domain_verdict_firing": true,
"domain_verdict_reading": "<string>",
"domain_verdict_expires_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"member_destinations": [
{
"id": "<string>",
"label": "<string>",
"type": "<string>"
}
],
"scale_target_count": 123,
"domain_verdict_contributors": [
{
"dispatch_lane": "<string>",
"tag_dimensions_key": "<string>",
"basis": "<string>",
"in_flight_share_bps": 123,
"service_time_share_bps": 123
}
],
"domain_verdict_firing_series": [
"<string>"
],
"scale_targets": [
{
"id": "<string>",
"name": "<string>",
"kind": "<string>",
"metric_source_query_id": "<string>",
"tag_projection_key": "<string>",
"tag_projection_value": "<string>",
"min_replicas": 123,
"max_replicas": 123,
"effective_min_replicas": 123,
"last_observed_replicas": 123,
"observability_degraded": true,
"binding_degraded": true,
"drift_contested": true
}
]
},
"errors": [
{
"code": "<string>",
"message": "<string>"
}
]
}Declare a destination a member of a capacity domain
POST
/
v1
/
orgs
/
{org_id}
/
capacity-domains
/
{id}
/
members
Declare a destination a member of a capacity domain
curl --request POST \
--url https://api.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members \
--header 'Content-Type: application/json' \
--header 'x-arklow-auth: <api-key>' \
--data '
{
"destination_id": "<string>"
}
'import requests
url = "https://api.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members"
payload = { "destination_id": "<string>" }
headers = {
"x-arklow-auth": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-arklow-auth': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({destination_id: '<string>'})
};
fetch('https://api.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members', 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.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members",
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([
'destination_id' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-arklow-auth: <api-key>"
],
]);
$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.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members"
payload := strings.NewReader("{\n \"destination_id\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-arklow-auth", "<api-key>")
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.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members")
.header("x-arklow-auth", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"destination_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.arklow.io/v1/orgs/{org_id}/capacity-domains/{id}/members")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-arklow-auth"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"destination_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "<string>",
"org_id": "<string>",
"name": "<string>",
"provenance": "<string>",
"declared_budget": 123,
"learned_budget": 123,
"learned_budget_expires_at": "2023-11-07T05:31:56Z",
"domain_verdict_firing": true,
"domain_verdict_reading": "<string>",
"domain_verdict_expires_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"member_destinations": [
{
"id": "<string>",
"label": "<string>",
"type": "<string>"
}
],
"scale_target_count": 123,
"domain_verdict_contributors": [
{
"dispatch_lane": "<string>",
"tag_dimensions_key": "<string>",
"basis": "<string>",
"in_flight_share_bps": 123,
"service_time_share_bps": 123
}
],
"domain_verdict_firing_series": [
"<string>"
],
"scale_targets": [
{
"id": "<string>",
"name": "<string>",
"kind": "<string>",
"metric_source_query_id": "<string>",
"tag_projection_key": "<string>",
"tag_projection_value": "<string>",
"min_replicas": 123,
"max_replicas": 123,
"effective_min_replicas": 123,
"last_observed_replicas": 123,
"observability_degraded": true,
"binding_degraded": true,
"drift_contested": true
}
]
},
"errors": [
{
"code": "<string>",
"message": "<string>"
}
]
}Authorizations
Body
application/json
Pattern:
^[0-9]+$⌘I