---
title: "Update transaction alerts in batch"
method: PUT
path: "/v2/transaction_alert"
tags: ["Transaction Alerts"]
---

# Update transaction alerts in batch

`PUT /v2/transaction_alert`

## Request body

- TransactionAlert[] — Transaction alert data to update, referenced by 'alert_id'. The 'timestamp' field represents the update time. Only the fields to be updated need to be included.
  - `alert_id` string, required — Unique identifier for a alert belonging to a transaction. This is the primary key for a transaction alert and should be unique across all transaction alerts. Updates to a transaction alert should be made using this identifier.
  - `check_type` 'INLINE_MONITORING' | 'DELAYED_MONITORING' — The type of monitoring check that triggered the alert.
  - `is_test` boolean — Set to true if this is a test transaction alert
  - `related_check_id` string — Unique identifier for a transaction check for which the alert belongs to.
  - `related_tx_ids` string[] — Unique identifiers for transactions which the alert relates to.
  - `status` 'CREATED' | 'PENDING' | 'CLOSED'
  - `timestamp` string, date-time, required — When this alert was generated in your system, in ISO 8601 format.

## Response `200`

Transaction alert updated successfully

- WriteOperationResponse
  - `message` string, required — Provides additional information about the operation result.
  - `organization_id` string, required — The organization ID for which the operation was performed.
  - `success` boolean, required — Indicates if the write operation was successful.
  - `write_count` integer, required — The number of records written to the database.

## Other responses

- `400` — Invalid transaction alert data
- `401` — Unauthorized request
- `404` — Transaction alert not found
- `429` — Rate limit exceeded
- `500` — Server error
- `default` — General error

---

[API](https://skmtc.net/cable/apis/cable-api.md) · [All operations](https://skmtc.net/cable/apis/cable-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cable/cable-api/versions/3222cd28dba5/schema)
