cURL
curl --request POST "$NLEAD_BASE_URL/v1/profiles" \
--header "X-API-Key: $NLEAD_API_KEY" --header "Content-Type: application/json" \
--data '{
"entries": [
{"mga": "11YN10000955-01S", "profile_code": "H0", "day": "2026-09-02",
"values_kwh": [0.25, "...96 quarter-hour values"],
"normalization_kwh_per_year": 1000.0}
]
}'import requests
url = "https://{host}/v1/profiles"
payload = { "entries": [
{
"day": "2026-09-01",
"mga": "11YR00000002092Q",
"normalization_kwh_per_year": 1000,
"profile_code": "H0",
"values_kwh": [1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.23, 1.26, 1.29, 1.32, 1.35, 1.38, 1.41, 1.44, 1.47, 1.5, 1.53, 1.56, 1.59, 1.62, 1.65, 1.68, 1.71, 1.74, 1.77, 1.8, 1.77, 1.74, 1.71, 1.68, 1.65, 1.62, 1.59, 1.56, 1.53, 1.5, 1.47, 1.44, 1.41, 1.38, 1.35, 1.32, 1.29, 1.26, 1.23, 1.2, 1.2, 1.2, 1.2]
}
] }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
entries: [
{
day: '2026-09-01',
mga: '11YR00000002092Q',
normalization_kwh_per_year: 1000,
profile_code: 'H0',
values_kwh: [
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.23,
1.26,
1.29,
1.32,
1.35,
1.38,
1.41,
1.44,
1.47,
1.5,
1.53,
1.56,
1.59,
1.62,
1.65,
1.68,
1.71,
1.74,
1.77,
1.8,
1.77,
1.74,
1.71,
1.68,
1.65,
1.62,
1.59,
1.56,
1.53,
1.5,
1.47,
1.44,
1.41,
1.38,
1.35,
1.32,
1.29,
1.26,
1.23,
1.2,
1.2,
1.2,
1.2
]
}
]
})
};
fetch('https://{host}/v1/profiles', 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://{host}/v1/profiles",
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([
'entries' => [
[
'day' => '2026-09-01',
'mga' => '11YR00000002092Q',
'normalization_kwh_per_year' => 1000,
'profile_code' => 'H0',
'values_kwh' => [
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.23,
1.26,
1.29,
1.32,
1.35,
1.38,
1.41,
1.44,
1.47,
1.5,
1.53,
1.56,
1.59,
1.62,
1.65,
1.68,
1.71,
1.74,
1.77,
1.8,
1.77,
1.74,
1.71,
1.68,
1.65,
1.62,
1.59,
1.56,
1.53,
1.5,
1.47,
1.44,
1.41,
1.38,
1.35,
1.32,
1.29,
1.26,
1.23,
1.2,
1.2,
1.2,
1.2
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <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://{host}/v1/profiles"
payload := strings.NewReader("{\n \"entries\": [\n {\n \"day\": \"2026-09-01\",\n \"mga\": \"11YR00000002092Q\",\n \"normalization_kwh_per_year\": 1000,\n \"profile_code\": \"H0\",\n \"values_kwh\": [\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.23,\n 1.26,\n 1.29,\n 1.32,\n 1.35,\n 1.38,\n 1.41,\n 1.44,\n 1.47,\n 1.5,\n 1.53,\n 1.56,\n 1.59,\n 1.62,\n 1.65,\n 1.68,\n 1.71,\n 1.74,\n 1.77,\n 1.8,\n 1.77,\n 1.74,\n 1.71,\n 1.68,\n 1.65,\n 1.62,\n 1.59,\n 1.56,\n 1.53,\n 1.5,\n 1.47,\n 1.44,\n 1.41,\n 1.38,\n 1.35,\n 1.32,\n 1.29,\n 1.26,\n 1.23,\n 1.2,\n 1.2,\n 1.2,\n 1.2\n ]\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<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://{host}/v1/profiles")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"entries\": [\n {\n \"day\": \"2026-09-01\",\n \"mga\": \"11YR00000002092Q\",\n \"normalization_kwh_per_year\": 1000,\n \"profile_code\": \"H0\",\n \"values_kwh\": [\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.23,\n 1.26,\n 1.29,\n 1.32,\n 1.35,\n 1.38,\n 1.41,\n 1.44,\n 1.47,\n 1.5,\n 1.53,\n 1.56,\n 1.59,\n 1.62,\n 1.65,\n 1.68,\n 1.71,\n 1.74,\n 1.77,\n 1.8,\n 1.77,\n 1.74,\n 1.71,\n 1.68,\n 1.65,\n 1.62,\n 1.59,\n 1.56,\n 1.53,\n 1.5,\n 1.47,\n 1.44,\n 1.41,\n 1.38,\n 1.35,\n 1.32,\n 1.29,\n 1.26,\n 1.23,\n 1.2,\n 1.2,\n 1.2,\n 1.2\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/v1/profiles")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"entries\": [\n {\n \"day\": \"2026-09-01\",\n \"mga\": \"11YR00000002092Q\",\n \"normalization_kwh_per_year\": 1000,\n \"profile_code\": \"H0\",\n \"values_kwh\": [\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.23,\n 1.26,\n 1.29,\n 1.32,\n 1.35,\n 1.38,\n 1.41,\n 1.44,\n 1.47,\n 1.5,\n 1.53,\n 1.56,\n 1.59,\n 1.62,\n 1.65,\n 1.68,\n 1.71,\n 1.74,\n 1.77,\n 1.8,\n 1.77,\n 1.74,\n 1.71,\n 1.68,\n 1.65,\n 1.62,\n 1.59,\n 1.56,\n 1.53,\n 1.5,\n 1.47,\n 1.44,\n 1.41,\n 1.38,\n 1.35,\n 1.32,\n 1.29,\n 1.26,\n 1.23,\n 1.2,\n 1.2,\n 1.2,\n 1.2\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"stored": 123,
"status": "stored"
}API Reference
Submit rolled-out load profiles
Mirror of the network operator’s rolled-out day profiles per
metering grid area and profile code - profiled market locations are
forecast from these, scaled to their annual consumption. values_kwh
carries kWh per quarter-hour; normalization_kwh_per_year says what
annual consumption the roll-out is normalized to (1000 for classic
SLP, 1000000 for TLP procedures).
POST
/
v1
/
profiles
cURL
curl --request POST "$NLEAD_BASE_URL/v1/profiles" \
--header "X-API-Key: $NLEAD_API_KEY" --header "Content-Type: application/json" \
--data '{
"entries": [
{"mga": "11YN10000955-01S", "profile_code": "H0", "day": "2026-09-02",
"values_kwh": [0.25, "...96 quarter-hour values"],
"normalization_kwh_per_year": 1000.0}
]
}'import requests
url = "https://{host}/v1/profiles"
payload = { "entries": [
{
"day": "2026-09-01",
"mga": "11YR00000002092Q",
"normalization_kwh_per_year": 1000,
"profile_code": "H0",
"values_kwh": [1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.23, 1.26, 1.29, 1.32, 1.35, 1.38, 1.41, 1.44, 1.47, 1.5, 1.53, 1.56, 1.59, 1.62, 1.65, 1.68, 1.71, 1.74, 1.77, 1.8, 1.77, 1.74, 1.71, 1.68, 1.65, 1.62, 1.59, 1.56, 1.53, 1.5, 1.47, 1.44, 1.41, 1.38, 1.35, 1.32, 1.29, 1.26, 1.23, 1.2, 1.2, 1.2, 1.2]
}
] }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
entries: [
{
day: '2026-09-01',
mga: '11YR00000002092Q',
normalization_kwh_per_year: 1000,
profile_code: 'H0',
values_kwh: [
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.23,
1.26,
1.29,
1.32,
1.35,
1.38,
1.41,
1.44,
1.47,
1.5,
1.53,
1.56,
1.59,
1.62,
1.65,
1.68,
1.71,
1.74,
1.77,
1.8,
1.77,
1.74,
1.71,
1.68,
1.65,
1.62,
1.59,
1.56,
1.53,
1.5,
1.47,
1.44,
1.41,
1.38,
1.35,
1.32,
1.29,
1.26,
1.23,
1.2,
1.2,
1.2,
1.2
]
}
]
})
};
fetch('https://{host}/v1/profiles', 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://{host}/v1/profiles",
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([
'entries' => [
[
'day' => '2026-09-01',
'mga' => '11YR00000002092Q',
'normalization_kwh_per_year' => 1000,
'profile_code' => 'H0',
'values_kwh' => [
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.2,
1.23,
1.26,
1.29,
1.32,
1.35,
1.38,
1.41,
1.44,
1.47,
1.5,
1.53,
1.56,
1.59,
1.62,
1.65,
1.68,
1.71,
1.74,
1.77,
1.8,
1.77,
1.74,
1.71,
1.68,
1.65,
1.62,
1.59,
1.56,
1.53,
1.5,
1.47,
1.44,
1.41,
1.38,
1.35,
1.32,
1.29,
1.26,
1.23,
1.2,
1.2,
1.2,
1.2
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <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://{host}/v1/profiles"
payload := strings.NewReader("{\n \"entries\": [\n {\n \"day\": \"2026-09-01\",\n \"mga\": \"11YR00000002092Q\",\n \"normalization_kwh_per_year\": 1000,\n \"profile_code\": \"H0\",\n \"values_kwh\": [\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.23,\n 1.26,\n 1.29,\n 1.32,\n 1.35,\n 1.38,\n 1.41,\n 1.44,\n 1.47,\n 1.5,\n 1.53,\n 1.56,\n 1.59,\n 1.62,\n 1.65,\n 1.68,\n 1.71,\n 1.74,\n 1.77,\n 1.8,\n 1.77,\n 1.74,\n 1.71,\n 1.68,\n 1.65,\n 1.62,\n 1.59,\n 1.56,\n 1.53,\n 1.5,\n 1.47,\n 1.44,\n 1.41,\n 1.38,\n 1.35,\n 1.32,\n 1.29,\n 1.26,\n 1.23,\n 1.2,\n 1.2,\n 1.2,\n 1.2\n ]\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<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://{host}/v1/profiles")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"entries\": [\n {\n \"day\": \"2026-09-01\",\n \"mga\": \"11YR00000002092Q\",\n \"normalization_kwh_per_year\": 1000,\n \"profile_code\": \"H0\",\n \"values_kwh\": [\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.23,\n 1.26,\n 1.29,\n 1.32,\n 1.35,\n 1.38,\n 1.41,\n 1.44,\n 1.47,\n 1.5,\n 1.53,\n 1.56,\n 1.59,\n 1.62,\n 1.65,\n 1.68,\n 1.71,\n 1.74,\n 1.77,\n 1.8,\n 1.77,\n 1.74,\n 1.71,\n 1.68,\n 1.65,\n 1.62,\n 1.59,\n 1.56,\n 1.53,\n 1.5,\n 1.47,\n 1.44,\n 1.41,\n 1.38,\n 1.35,\n 1.32,\n 1.29,\n 1.26,\n 1.23,\n 1.2,\n 1.2,\n 1.2,\n 1.2\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/v1/profiles")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"entries\": [\n {\n \"day\": \"2026-09-01\",\n \"mga\": \"11YR00000002092Q\",\n \"normalization_kwh_per_year\": 1000,\n \"profile_code\": \"H0\",\n \"values_kwh\": [\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.2,\n 1.23,\n 1.26,\n 1.29,\n 1.32,\n 1.35,\n 1.38,\n 1.41,\n 1.44,\n 1.47,\n 1.5,\n 1.53,\n 1.56,\n 1.59,\n 1.62,\n 1.65,\n 1.68,\n 1.71,\n 1.74,\n 1.77,\n 1.8,\n 1.77,\n 1.74,\n 1.71,\n 1.68,\n 1.65,\n 1.62,\n 1.59,\n 1.56,\n 1.53,\n 1.5,\n 1.47,\n 1.44,\n 1.41,\n 1.38,\n 1.35,\n 1.32,\n 1.29,\n 1.26,\n 1.23,\n 1.2,\n 1.2,\n 1.2,\n 1.2\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"stored": 123,
"status": "stored"
}Authorizations
APIKeyHeaderHTTPBearer
Body
application/json
Minimum array length:
1Show child attributes
Show child attributes