Update Hood Engage settings

Update Hood Engage settings

PATCH https://api.ocamba.com/v1/hood/settings

Updates the Hood Engage settings. Any parameters not provided will be left unchanged

Rate limits:

Burst: 10/s
Steady: 150/m

Request schema

body
PATCH https://api.ocamba.com/v1/hood/settings HTTP/1.1
Host: api.ocamba.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
{}
curl -X PATCH "https://api.ocamba.com/v1/hood/settings" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'
fetch("https://api.ocamba.com/v1/hood/settings", {
  method: "PATCH",
  headers: { Authorization: `Bearer ${TOKEN}`, "Content-Type": "application/json" },
  body: JSON.stringify(
    {}
  )
}).then(r => r.json());
$ch = curl_init("https://api.ocamba.com/v1/hood/settings");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  "Authorization: Bearer $token",
  "Content-Type: application/json"
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(
  []
));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);

Responses

204 No Content

HTTP/1.1 204 No Content
Content-Type: application/json
Responses