GET
/
api
/
external
/
v2
/
sepa_mandates
/
{id}
Get a SEPA mandate
curl --request GET \
  --url https://app.pennylane.com/api/external/v2/sepa_mandates/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 12345,
  "bank": "BNP Paribas",
  "bic": "BNPAFRPP",
  "iban": "FR3612739000506556687647Z31",
  "sequence_type": "RCUR",
  "signed_at": "2025-04-24",
  "identifier": "K-02-2023-12345",
  "customer": {
    "id": 42,
    "url": "https://app.pennylane.com/api/external/v2/customers/42"
  },
  "created_at": "2023-08-07T14:23:12.000Z",
  "updated_at": "2023-08-07T14:23:12.000Z"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
integer
required

ID of the SEPA mandate to retrieve

Response

200
application/json

A SEPA mandate

The response is of type object.