Recurring Payments
Active/Cancel Recurring
POST/subscription/status

Allows partners to change the status of an existing recurring subscription between ACTIVE and CANCEL.

Header Parameters

token*
string

Body Parameters

subscription_id*
string
status*
string
POST/subscription/status
1curl --location 'https://api.ipospays.tech/v1/subscription/status' \
2--header 'token: ' \
3--header 'Content-Type: application/json' \
4--data '{
5 "subscription_id": "12345",
6 "status": "CANCELLED"
7}'
Response

// Awaiting response…

Sample response
{
  "message": "subscription canceled successfully",
  "response_code": "SUCCESS",
  "status_code": 200,
  "request_id": "TEST-20251112014000-ABCDE1",
  "timestamp": "2025-11-12T06:40:00.000Z"
}