v1

latestOpenAPI 3.1.02026-07-241120379.1 KB

Skip order

This endpoint allows you to skip the scheduled order for a given subscription. This is typically used when a customer wants to temporarily skip the order without pausing or canceling the subscription.

post/2023-10/order/{orderId}/skip

Path parameters

versionstring required

YYYY-MM

orderIdinteger required

The unique identifier of the order in Loop.

Response

200

successboolean
messagestring
codestring
{"stackTrail":"paths:/2023-10/order/{orderId}/skip:post:responses:200:content:application/json:schema:properties:pageInfo","oasType":"schema","type":"unknown"}

Example response

{
  "success": true,
  "message": "Order skipped successfully",
  "data": {
    "id": 11038704,
    "billingDateEpoch": 1703901600,
    "status": "SKIPPED",
    "nextBillingDateEpoch": 1704506400
  },
  "code": "SUCCESS"
}