Brand
Subscriptions
Pause Subscription

Pause Subscription

GET endpoint for /brand/subscriptions/pause-subscription in brand category

Overview

  • Method: GET
  • Path: /brand/subscriptions/pause-subscription
  • Tags: brand

Parameters

No parameters required.

Request Body

No request body required.

Responses

200

Successful response

Content Type: application/json

{
  "type": "object",
  "properties": {
    "message": {
      "type": "string"
    },
    "subscription": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "pausedAt": {
      "type": "string"
    }
  },
  "required": [
    "message",
    "subscription",
    "state",
    "pausedAt"
  ]
}

400

Bad Request

Content Type: application/json

{
  "type": "object",
  "properties": {
    "message": {
      "type": "string"
    },
    "currentOrder": {
      "type": "string"
    },
    "displayId": {
      "type": "number"
    },
    "status": {
      "type": "string"
    },
    "seqNum": {
      "type": "number"
    }
  },
  "required": [
    "message",
    "currentOrder",
    "displayId",
    "status",
    "seqNum"
  ]
}

401

Unauthorized

404

Not Found

500

Internal Server Error

Example Usage

curl -X GET \
  http://localhost:9000/brand/subscriptions/pause-subscription \
  -H "Content-Type: application/json" \
  

Interactive Testing

You can test this endpoint interactively in the Swagger UI (opens in a new tab).