Applies a batch of resource plans
curl --request POST \
--url https://use.hoop.dev/api/resources/apply \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"sid": "5701046A-7B7A-4A78-ABB0-A24C95E6FE54",
"resource_name": "my-postgres"
}
]
}
'import requests
url = "https://use.hoop.dev/api/resources/apply"
payload = { "items": [
{
"sid": "5701046A-7B7A-4A78-ABB0-A24C95E6FE54",
"resource_name": "my-postgres"
}
] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
items: [{sid: '5701046A-7B7A-4A78-ABB0-A24C95E6FE54', resource_name: 'my-postgres'}]
})
};
fetch('https://use.hoop.dev/api/resources/apply', 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://use.hoop.dev/api/resources/apply",
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([
'items' => [
[
'sid' => '5701046A-7B7A-4A78-ABB0-A24C95E6FE54',
'resource_name' => 'my-postgres'
]
]
]),
CURLOPT_HTTPHEADER => [
"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://use.hoop.dev/api/resources/apply"
payload := strings.NewReader("{\n \"items\": [\n {\n \"sid\": \"5701046A-7B7A-4A78-ABB0-A24C95E6FE54\",\n \"resource_name\": \"my-postgres\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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://use.hoop.dev/api/resources/apply")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"sid\": \"5701046A-7B7A-4A78-ABB0-A24C95E6FE54\",\n \"resource_name\": \"my-postgres\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://use.hoop.dev/api/resources/apply")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"items\": [\n {\n \"sid\": \"5701046A-7B7A-4A78-ABB0-A24C95E6FE54\",\n \"resource_name\": \"my-postgres\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"results": [
{
"message": "failed obtaining blob stream: empty blob stream",
"resource_name": "my-postgres",
"sid": "5701046A-7B7A-4A78-ABB0-A24C95E6FE54",
"status": "success"
}
]
}{
"message": "the error description"
}Resources
Applies a batch of resource plans
Applies a batch of previously created resource plans. Each item references a plan session by SID and the target resource name. All items are processed concurrently and the response is returned once all have completed. Per-item failures are embedded in the results with status “failed” rather than returned as HTTP errors.
POST
/
resources
/
apply
Applies a batch of resource plans
curl --request POST \
--url https://use.hoop.dev/api/resources/apply \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"sid": "5701046A-7B7A-4A78-ABB0-A24C95E6FE54",
"resource_name": "my-postgres"
}
]
}
'import requests
url = "https://use.hoop.dev/api/resources/apply"
payload = { "items": [
{
"sid": "5701046A-7B7A-4A78-ABB0-A24C95E6FE54",
"resource_name": "my-postgres"
}
] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
items: [{sid: '5701046A-7B7A-4A78-ABB0-A24C95E6FE54', resource_name: 'my-postgres'}]
})
};
fetch('https://use.hoop.dev/api/resources/apply', 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://use.hoop.dev/api/resources/apply",
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([
'items' => [
[
'sid' => '5701046A-7B7A-4A78-ABB0-A24C95E6FE54',
'resource_name' => 'my-postgres'
]
]
]),
CURLOPT_HTTPHEADER => [
"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://use.hoop.dev/api/resources/apply"
payload := strings.NewReader("{\n \"items\": [\n {\n \"sid\": \"5701046A-7B7A-4A78-ABB0-A24C95E6FE54\",\n \"resource_name\": \"my-postgres\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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://use.hoop.dev/api/resources/apply")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"sid\": \"5701046A-7B7A-4A78-ABB0-A24C95E6FE54\",\n \"resource_name\": \"my-postgres\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://use.hoop.dev/api/resources/apply")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"items\": [\n {\n \"sid\": \"5701046A-7B7A-4A78-ABB0-A24C95E6FE54\",\n \"resource_name\": \"my-postgres\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"results": [
{
"message": "failed obtaining blob stream: empty blob stream",
"resource_name": "my-postgres",
"sid": "5701046A-7B7A-4A78-ABB0-A24C95E6FE54",
"status": "success"
}
]
}{
"message": "the error description"
}Was this page helpful?
⌘I