Skip to main content
POST
/
organizations
/
{organization_id}
/
sepa-mandates
Create Sepa Mandate
curl --request POST \
  --url https://sandbox.intermezzo.ai/organizations/{organization_id}/sepa-mandates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "validFrom": "2023-12-25",
  "validTo": "2023-12-25",
  "mandateReference": "<string>",
  "creditorId": "<string>",
  "bankAccountId": "<string>",
  "isRecurring": true
}'
{
  "validFrom": "2023-12-25",
  "validTo": "2023-12-25",
  "mandateReference": "<string>",
  "creditorId": "<string>",
  "bankAccountId": "<string>",
  "isRecurring": true,
  "id": "<string>",
  "createdBy": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organization_id
required

Body

application/json
creditorId
string
required
bankAccountId
required
validFrom
string<date> | null
validTo
string<date> | null
mandateReference
string | null
isRecurring
boolean
default:true

Response

Successful Response

creditorId
string
required
bankAccountId
string
required
isRecurring
boolean
required
id
string
required
createdBy
string
required
validFrom
string<date> | null
validTo
string<date> | null
mandateReference
string | null
I