CTIX
Network live
CTIXPUT

Update Action

Source docs
PUThttps://cs-testv2.cyware.com/ctixapi/integration/apps/actions/

Updates a particular action of an account.

Query Parameters

NameTypeRequiredDescription
integration_app_idstringoptional

Pass the ID of the third-party tool.

integration_action_idstringoptional

Pass the ID of the action of tool.

Body Parameters

NameTypeRequiredDescription
is_activebooleanrequired

Pass true to activate the action, else pass false.

third_party_config_idstringrequired

Pass the ID of the account to activate or deactivate.

Run it

Use the Request parameters panel to enter path IDs, query values, JSON body, and credentials. Then run any snippet below — all languages use the same values. Base URL: https://cs-testv2.cyware.com/ctixapi (change in API Settings).

Playground

Request parameters

Edit values here before running any snippet below (cURL, JavaScript, or Python). Code blocks are reference only — your inputs above are what gets sent.

CTIXConnect to Intel ExchangeRequired to change data
Credentials required for PUT

Open API (HMAC signature) · Get credentials from Cyware Admin → Open API → Generate Credentials.

Signature and Expires are generated when you run a request. Access ID and Secret Key stay in memory for this tab only.

Credentials from Authentication auto-fill here for this product. If fields are empty after connecting, refresh this page or open the product docs again.

Query Parameters
Request body (JSON)Valid JSON
cURL
curl --request PUT \
  --url "https://cs-testv2.cyware.com/ctixapi/integration/apps/actions/?integration_app_id=079ed40b-01f6-4c00-9119-6db7afc6bc6f&integration_action_id=ad45f197-0768-42ea-af4c-1acee0eee19f&AccessID=%3Cyour%20access%20id%3E&Signature=%3Cyour%20signature%3E&Expires=%3Cyour%20expires%3E" \
  --data '{
  "is_active": false,
  "third_party_config_id": "{{integration_account_id}}"
}'

View-only example — running live API calls requires a role with snippet testing access.

JavaScript
const url = "https://cs-testv2.cyware.com/ctixapi/integration/apps/actions/?integration_app_id=079ed40b-01f6-4c00-9119-6db7afc6bc6f&integration_action_id=ad45f197-0768-42ea-af4c-1acee0eee19f&AccessID=%3Cyour%20access%20id%3E&Signature=%3Cyour%20signature%3E&Expires=%3Cyour%20expires%3E";

const response = await fetch(url, {
  method: "PUT",
  headers: {},
  body: JSON.stringify({
    "is_active": false,
    "third_party_config_id": "{{integration_account_id}}"
  }),
});

const text = await response.text();
let data;
try { data = JSON.parse(text); } catch { data = text; }
console.log(response.status, data);

View-only example — running live API calls requires a role with snippet testing access.

Python
import requests

url = "https://cs-testv2.cyware.com/ctixapi/integration/apps/actions/"
params = {
    "integration_app_id": "079ed40b-01f6-4c00-9119-6db7afc6bc6f",
    "integration_action_id": "ad45f197-0768-42ea-af4c-1acee0eee19f",
    "AccessID": "<your access id>",
    "Signature": "<your signature>",
    "Expires": "<your expires>"
}
headers = {}
payload = {
  "is_active": false,
  "third_party_config_id": "{{integration_account_id}}"
}
response = requests.request("PUT", url, params=params, headers=headers, json=payload)
print(response.status_code)
print(response.text)

View-only example — running live API calls requires a role with snippet testing access.

Request Body
{
  "is_active": false,
  "third_party_config_id": "{{integration_account_id}}"
}

View-only example — running live API calls requires a role with snippet testing access.

Example Response
{
  "component": "rule",
  "id": "0f63dfa6-88ce-42fc-bebe-c3d43cbe97e4",
  "is_active": true,
  "is_configured": false,
  "name": "-",
  "polling_time": 0,
  "polling_type": "A",
  "related_fields": {},
  "slug": "trigger_rule_v3",
  "working_status": ""
}

View-only example — running live API calls requires a role with snippet testing access.