Skip to main content
POST
/
v1
/
psp_mandates
Create signed psp mandates, these need to be verified before creating
curl --request POST \
  --url https://api.paytsoftware.com/v1/psp_mandates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "administration_id": "<string>",
  "psp_mandates": [
    {
      "bank_account_name": "<string>",
      "bank_account_number": "<string>",
      "mandate_identifier": "<string>",
      "debtor_code": "<string>",
      "debtor_id": "<string>",
      "customer_identifier": "<string>",
      "mandate_reference": "<string>"
    }
  ],
  "fields": {}
}
'
{
  "administration_id": "<string>",
  "bank_account_name": "<string>",
  "bank_account_number": "<string>",
  "debtor_id": "<string>",
  "id": "<string>",
  "mandate_identifier": "<string>",
  "provider": "<string>",
  "updated_at": "2023-11-07T05:31:56Z",
  "mandate_reference": "<string>",
  "debtor_number": "<string>",
  "deactivated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

OAuth2 access token or static API token. See Authorization for how to obtain one.

Body

Create signed psp mandates, these need to be verified before creating

administration_id
string
required

Administration identifier

psp_mandates
object[]
required
fields
object

JSON object defining fields to receive (e.g {"only": ["field1", {"field2": ["field3"]}]})

Response

Create signed psp mandates, these need to be verified before creating

CustomerApi_V1_PspMandateEntity model

administration_id
string
required

Owning administration identifier

bank_account_name
string
required

Bank account name

bank_account_number
string
required

Bank account number

debtor_id
string
required

Internal debtor identifier

id
string
required

Internal identifier

mandate_identifier
string
required

Identifier from provider

provider
string
required

Provider where mandate is registered

updated_at
string<date-time>
required

Timestamp at which the psp_mandate was last updated

mandate_reference
string

Customer-supplied mandate reference

debtor_number
string

Debtor number (request with the 'fields' parameter)

deactivated_at
string<date-time>

Timestamp at which the psp_mandate was deactivated

Last modified on June 12, 2026