curl -X PUT '/v1/auto-forwarding/af_01abc123' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"min_amount": "50.00",
"enabled": false
}'
{
"success": true,
"data": {
"rule_id": "af_01abc123",
"min_amount": "50.00",
"enabled": false,
"updated_at": "2026-04-01T13:00:00Z"
}
}
Auto-Forwarding
Update Rule
Update an auto-forwarding rule
PUT
/
v1
/
auto-forwarding
/
{rule_id}
curl -X PUT '/v1/auto-forwarding/af_01abc123' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"min_amount": "50.00",
"enabled": false
}'
{
"success": true,
"data": {
"rule_id": "af_01abc123",
"min_amount": "50.00",
"enabled": false,
"updated_at": "2026-04-01T13:00:00Z"
}
}
string
required
Bearer token:
Bearer YOUR_ACCESS_TOKENstring
required
The rule ID to update.
string
New destination address.
string
New minimum amount threshold.
boolean
Enable or disable the rule.
curl -X PUT '/v1/auto-forwarding/af_01abc123' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"min_amount": "50.00",
"enabled": false
}'
{
"success": true,
"data": {
"rule_id": "af_01abc123",
"min_amount": "50.00",
"enabled": false,
"updated_at": "2026-04-01T13:00:00Z"
}
}

