GET
/
subscriptions
/
{subscription_number}
/
customers
curl --request GET \
  --url https://services.commercengine.dev/api/v1/x2yh61zw4k/admin/subscriptions/{subscription_number}/customers \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "success": true,
  "content": {
    "customers": [
      {
        "customer_id": "<string>",
        "customer_name": "<string>",
        "customer_profile_image_url": "<string>",
        "subscription_start_date": "2023-11-07T05:31:56Z",
        "subscription_end_date": "2023-11-07T05:31:56Z",
        "subscription_status": "active",
        "subscription_next_billing_date": "2023-11-07T05:31:56Z",
        "created_at": "2023-11-07T05:31:56Z",
        "modified_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

subscription_number
string
required

subscription number

Response

200 - application/json
OK
message
string
success
boolean
content
object