---
title: "List SEPA mandates"
method: GET
path: "/api/external/v2/sepa_mandates"
tags: ["Mandates"]
---

# List SEPA mandates

`GET /api/external/v2/sepa_mandates`

This endpoint allows you to retrieve all SEPA mandates associated with your company

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

## Query parameters

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

## Response `200`

A list of SEPA 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
    - `id` integer, required — ID of the created SEPA mandate
    - `bank` string, nullable, required — Name of the customer's bank
    - `bic` string, required — Bank Identifier Code (BIC) of the customer's bank
    - `iban` string, required — International Bank Account Number (IBAN) of the customer
    - `sequence_type` 'FRST' | 'OOFF' | 'RCUR' | 'FNAL', required — SEPA mandate sequence type that defines the payment process. - `FRST`: First payment in a series of recurring payments - `OOFF`: One-off payment - `RCUR`: Recurring payment that is not the first payment - `FNAL`: Final payment in a series of recurring payments
    - `signed_at` string, date, required — Date when the mandate was signed
    - `identifier` string, required — Unique identifier for the mandate
    - `customer` object, required
      - `id` integer, required
      - `url` string, required — URL to get the customer.
    - `created_at` string, date-time, required — Creation date of the SEPA mandate
    - `updated_at` string, date-time, required — Last update date of the SEPA mandate

## 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/versions/a5b7236473c6/schema)
