Brand
Subscriptions
Capture Subscription Payment

Capture Subscription Payment

Manually trigger payment capture for an awaiting-payment order and return the processing result.

Overview

  • Method: POST
  • Path: /brand/subscriptions/capture-subscription-payment/<orderId>
  • Tags: brand

Parameters

orderId (path)

  • Type: string
  • Required: Yes
  • Description: orderId parameter

Request Body

No request body required.

Responses

200

Successful response

Content Type: application/json

{
  "status": {},
  "message": "string",
  "error": "string",
  "orderId": "string"
}

400

Bad Request

Content Type: application/json

{
  "error": "string",
  "details": [
    {}
  ]
}

401

Unauthorized

404

Not Found

500

Internal Server Error

Example Usage

curl -X POST \
  https://api.pillexa.com/brand/subscriptions/capture-subscription-payment/<orderId> \
  -H "Content-Type: application/json" \