Cashback Rules
Update Cashback Rule
Updates a cashback rule funded by the authenticated platform account. Requires payout:transfer_funds. Only merchant_name, merchant_category_code, description, and expires_at can change; starts_at, rate_bps, funding_account_id, and scoped_account_id are immutable. Omitted fields stay unchanged. Scheduled, active, and expired rules can be updated; discarded rules cannot. Updating a rule does not transfer funds.
patch/cashback_rules/{id}
Request body
Example request
{
"description": "Cloud cashback",
"expires_at": "2026-01-01T12:00:00.000Z",
"merchant_category_code": "7372",
"merchant_name": "ACME CLOUD"
}Response
cashback rule updated
Example response
{
"created_at": "2026-01-01T12:00:00.000Z",
"description": "Cloud cashback",
"expires_at": "2026-01-01T12:00:00.000Z",
"funding_account_id": "biz_xxxxxxxxxxxxxx",
"id": "cicbr_xxxxxxxxxxxxxx",
"merchant_category_code": "7372",
"merchant_name": "ACME CLOUD",
"rate_bps": 500,
"scoped_account_id": "biz_xxxxxxxxxxxxxx",
"starts_at": "2026-01-01T12:00:00.000Z",
"updated_at": "2026-01-01T12:00:00.000Z"
}