wafeq_bank_accounts_statement_transactions_create
Create a bank statement transaction for a bank account by submitting amount, date, and statement balance. Include an idempotency key to prevent duplicate records on retry.
Instructions
๐ก WRITE ยท creates data ยท Bank Statement Transactions ยท POST /bank-accounts/{bank_account_id}/statement-transactions/
Create bank statement transaction
Endpoint for creating a new bank statement transaction.
Not idempotent โ calling twice creates two records. Pass idempotency_key (or let the server generate one) to make a retry safe.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | A ModelSerializer that takes additional arguments for "fields", "omit" and "expand" in order to control which fields are displayed, and whether to replace simple values with complex, nested serializations | |
| bank_account_id | Yes | ||
| idempotency_key | No | Optional idempotency key (sent as the X-Wafeq-Idempotency-Key header). A UUID v4 is generated automatically when omitted, so an automatic network retry can never duplicate this operation. Pass your own stable value to make a deliberate re-invocation safe as well. |