---
title: "List managed customer accounts"
description: "List customer accounts provisioned by the authenticated partner application, including agent and printer health."
---
<nav class="docs-breadcrumb" aria-label="Breadcrumb"><a href="/docs/">CloudPrint Documentation</a><span aria-hidden="true">/</span><span>API reference</span></nav>

# List managed customer accounts

<p class="docs-lead">List customer accounts provisioned by the authenticated partner application, including agent and printer health.</p>

<div class="api-endpoint-summary"><span class="api-method api-method-get">GET</span><code>/partner-api/v1/accounts</code><span><strong>API version:</strong> v1</span><span><strong>operationId:</strong> <code>listPartnerManagedAccounts</code></span><a href="/docs/api/v1/partner/accounts/list/index.md">View as Markdown</a></div>

## What this endpoint does

List customer accounts provisioned by the authenticated partner application, including agent and printer health.

## Authentication

Send a one-time RS256 Developer Application assertion in `Authorization: Bearer <application_assertion>`. This assertion is not a Public API access token.

## Request

**Production base URL:** `https://public-api.cloudprint.me/partner-api/v1/accounts`

### Parameters

| Name | Location | Type | Required | Description | Constraints |
| --- | --- | --- | --- | --- | --- |
| `limit` | query | `integer` | no | — | min: 1; max: 100; default: `50` |
| `cursor` | query | `string (uuid)` | no | — | — |
| `external_customer_id` | query | `string` | no | Exact tenant identifier supplied when the managed Account was created. | minLength: 1; maxLength: 160 |

### Request body

This endpoint has no request body.

### Example requests

#### cURL

```bash
curl -sS https://public-api.cloudprint.me/partner-api/v1/accounts \
  -H "Authorization: Bearer $APPLICATION_ASSERTION"
```

## Response

**HTTP status:** `200` — Managed Accounts page

### Response fields

| Name | Type | Required | Description | Constraints |
| --- | --- | --- | --- | --- |
| `data` | `array` | yes | — | — |
| `next_cursor` | `string \| null (uuid)` | yes | Opaque cursor for the next result page; send it back unchanged. | — |

### Example response

```json
{
  "data": [
    "string"
  ],
  "next_cursor": null
}
```

## Errors

| HTTP status | Description |
| --- | --- |
| `401` | Application assertion is missing, invalid or already used |
| `403` | Partner capability is not granted |
| `422` | Pagination parameters are invalid |
| `429` | Rate limit exceeded |
| `500` | Unexpected error |

## Integration guidance

## Related documentation

<div class="docs-card-grid"><a class="docs-card" href="/docs/api/v1/partner/accounts/create/"><strong>Provision a managed customer account</strong><span>Create an isolated CloudPrint customer account, App Installation and one-time Agent Enrollment without customer registration.</span></a>
<a class="docs-card" href="/docs/api/v1/partner/accounts/get/"><strong>Get one managed customer account</strong><span>Retrieve one managed customer directly by its stable relationship ID.</span></a>
<a class="docs-card" href="/docs/partner-platform/"><strong>CloudPrint Partner Platform</strong><span>Provision and operate isolated CloudPrint customer accounts from an embedded or white-label product.</span></a></div>

<nav class="docs-resource-links" aria-label="Next steps"><a href="/docs/api/v1/explorer/">OpenAPI</a><a href="https://my.cloudprint.me">Open account</a><a href="/docs/legal/privacy/">Privacy Policy</a><a href="/docs/legal/terms/">Terms</a><a href="/docs/legal/payments-and-refunds/">Payment and refunds</a><a href="/docs/legal/data-processing/">DPA</a></nav>