# subscriptions — NCM API

The NetCloud subscriptions held in an account, covering what each device is licensed for and when that licence expires. Read-only, a single list call. Pair it with regrades, which is where licensing is actually changed in bulk.

Base URL: https://api.cradlepointecm.com

### GET /api/v3/subscriptions

Get a response using given parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| page[after] | query | string | no | Page after (next page) |
| page[before] | query | string | no | Page before (prior page) |
| page[size] | query | integer | no | Page size (default size: 20, Max Page Size: 50) |
| filter[start_time] | query | string | no | filter by start_time |
| filter[end_time] | query | string | no | filter by end_time |

**Example request**

```bash
curl "https://api.cradlepointecm.com/api/v3/subscriptions" \
  -H "Authorization: Bearer <token>"
```

**Response 200** — Success! You should have a page! If it doesn't contain anything, your query filtered everything out
