---
title: "List Pro Account payment mandates"
method: GET
path: "/api/external/v2/pro_account/mandates"
tags: ["Mandates"]
---

# List Pro Account payment mandates

`GET /api/external/v2/pro_account/mandates`

This endpoint allows you to retrieve all payment mandates associated
with your company's pro account.

Requirements:
- Company must have a Pro Account (returns 404 if not)
- Company must have an enabled merchant profile (returns 403 if not)


> ℹ️
> This endpoint requires one of the following scopes: `customer_mandates:readonly`, `customer_mandates:all`

## Query parameters

- `cursor` string
- `limit` integer
- `filter` string
- `sort` string

## Response `200`

A list of payment mandates

- object
  - `has_more` boolean, required — Indicates whether additional results are available beyond this set. Use this flag to determine if another request is needed.
  - `next_cursor` string, nullable, required — Cursor to retrieve the next set of results. Include this value in the cursor parameter of your next request to fetch subsequent items. A `null` `next_cursor` in the response indicates no further results.
  - `items` object[], required
    - `status` string, required — Current status of the mandate
    - `early_execution_date_permitted` boolean, required — Whether early execution date is permitted for this mandate
    - `active_billing_subscription` boolean, required — Whether the customer has at least one active billing subscription
    - `signed_at` string, date, nullable, required — Date when the mandate was signed
    - `created_at` string, date-time, required — Date and time when the mandate was created
    - `pdf_url` string, nullable, required — URL to the PDF file of the mandate (only present for mandate type, null for mandate_request)
    - `customer` object, nullable, required — Associated customer information
      - `id` integer, required — Customer ID
      - `url` string, required — URL to the customer resource

## Other responses

- `400` — Bad request
- `401` — Access token is missing or invalid
- `403` — Access to this resource forbidden
- `404` — The resource was not found

---

[API](https://skmtc.net/pennylane/apis/company-v2.md) · [All operations](https://skmtc.net/pennylane/apis/company-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pennylane/company-v2/revisions/a5b7236473c6/schema)
