Create Macro

Create Macro

POST https://api.ocamba.com/v1/hood/macros
Creates a new Macro object

Rate limits:

  • Burst: 10/s
  • Steady: 150/m

Request schema

body

Response schemas

curl -X POST \
 "https://api.ocamba.com/v1/hood/macros" \
  -H "Authorization: Bearer {TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
  "name": "CUSTOM_MACRO",
  "description": "This is a custom macro",
  "type": "dynamic",
  "value": "default_value",
  "fields": [
    "country_code"
  ],
  "records": [
    {
      "fields": {
        "country_code": "RS"
      },
      "value": "value"
    }
  ]
}'
const url = 'https://api.ocamba.com/v1/hood/macros';
const options = {
  method: 'POST',
  headers: {
    Authorization: "Bearer {TOKEN}",
    'Content-Type': "application/json"
  },
  body: JSON.stringify(
    {
      "name": "CUSTOM_MACRO",
      "description": "This is a custom macro",
      "type": "dynamic",
      "value": "default_value",
      "fields": [
        "country_code"
      ],
      "records": [
        {
          "fields": {
            "country_code": "RS"
          },
          "value": "value"
        }
      ]
    }
  )
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
$ch = curl_init("https://api.ocamba.com/v1/hood/macros");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  "Authorization: Bearer {TOKEN}",
  "Content-Type: application/json"
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(
  [
    "name" => "CUSTOM_MACRO",
    "description" => "This is a custom macro",
    "type" => "dynamic",
    "value" => "default_value",
    "fields" => [
      "country_code"
    ],
    "records" => [
      [
        "fields" => [
          "country_code" => "RS"
        ],
        "value" => "value"
      ]
    ]
  ]
));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);

Responses

201 Created

{
  "id": "11",
  "company_id": "17928651",
  "name": "CUSTOM_MACRO",
  "description": "This is a custom macro",
  "type": "dynamic",
  "value": "default_value",
  "fields": [
    "country_code"
  ],
  "records": [
    {
      "fields": {
        "country_code": "RS"
      },
      "value": "value"
    }
  ],
  "size": 1,
  "create_time": "2025-10-16 12:47:00",
  "update_time": "2025-10-16 14:27:26"
}

400 Bad Request

{
  "code": 400,
  "title": "Bad request.",
  "message": "The request is not valid.",
  "trace_id": "99a84211-f73d-4ff8-acdf-eb3e06bb9d62"
}

500 Internal Server Error

{
  "code": 500,
  "title": "Internal server error.",
  "trace_id": "99a84211-f73d-4ff8-acdf-eb3e06bb9d62"
}
Responses