Pine LabsDOCS

Delete Plan

DELETE/ps/api/v1/public/plans/{plan_id}

Deletes a subscription plan by its plan ID.

Requires Bearer token. Get token →

Path Parameters

NameTypeDescription
plan_id
stringrequired

Unique identifier for the subscription plan.

Status Codes

200Plan deleted successfully.
404The requested resource does not exist.
500An unexpected error occurred on the server.
Request
curl --request DELETE \
  --url https://pluraluat.v2.pinepg.in/ps/api/v1/public/plans/%7Bplan_id%7D \
  --header 'Authorization: Bearer YOUR_ACCESS_TOKEN'

Run this request

plan_id
404 Not Found
{
  "code": "ORDER_NOT_FOUND",
  "message": "Order not found",
  "additional_error_details": {
    "source": "INTERNAL",
    "step": "resource_lookup",
    "reason": "resource_does_not_exist"
  }
}