Skip to main content
POST
/
subscription
/
disable_autorenew
Disable subscription auto-renewal (cancel)
curl --request POST \
  --url https://billing.funnelfox.com/{org_id}/v1/subscription/disable_autorenew \
  --header 'Content-Type: application/json' \
  --header 'ff-secret-key: <api-key>' \
  --data '
{
  "subs_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "reason": "",
  "comment": "",
  "external_id": "<string>"
}
'
{}

Authorizations

ff-secret-key
string
header
required

Secret key for FunnelFox Billing API. Required for all requests.

Path Parameters

org_id
string
required

Organization ID

Body

application/json
subs_id
string<uuid>
required
reason
string
default:""

Short reason code (e.g., "duplicate_payment", "unauthorized_charge")

Maximum string length: 256
comment
string
default:""

Human-readable comment or reference (e.g., support ticket link)

Maximum string length: 2048
external_id
string | null

Your unique identifier for the user

Maximum string length: 256

Response

200 - application/json

The response is of type Ok200 · object.