Skip to main content
PUT
/
entities
/
{entity_id}
/
payment_methods
curl --request PUT \
  --url https://api.sandbox.monite.com/v1/entities/{entity_id}/payment_methods \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-monite-version: <x-monite-version>' \
  --data '
{
  "payment_methods_send": [
    "sepa_credit"
  ],
  "payment_methods_receive": [
    "card",
    "sepa_credit",
    "sepa_debit"
  ]
}
'
{
  "data": [
    {
      "direction": "receive",
      "name": "SEPA Payments",
      "status": "active",
      "type": "sepa_credit"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

x-monite-version
string<date>
required

Path Parameters

entity_id
string<uuid>
required

Body

application/json
payment_methods
enum<string>[]
deprecated

Deprecated. Replaced by payment_methods_receive.

Minimum array length: 1
Available options:
sepa_credit,
us_ach,
blik,
card,
bacs_direct_debit,
bancontact,
eps,
giropay,
ideal,
p24,
sepa_debit,
sofort,
applepay,
googlepay,
affirm,
klarna
payment_methods_receive
enum<string>[]

Payment methods to receive money from customers. Supported payment methods vary per country.

card includes card payments, Apple Pay, and Google Pay. The values applepay and googlepay are deprecated and unused.

sofort is deprecated and replaced by klarna.

Minimum array length: 1
Available options:
sepa_credit,
us_ach,
blik,
card,
bacs_direct_debit,
bancontact,
eps,
giropay,
ideal,
p24,
sepa_debit,
sofort,
applepay,
googlepay,
affirm,
klarna
payment_methods_send
enum<string>[]

Only for entities in the EU and UK. Payment methods used to make payments to vendors.

Currently only sepa_credit is supported for making payments.

Minimum array length: 1
Available options:
sepa_credit,
us_ach,
blik,
card,
bacs_direct_debit,
bancontact,
eps,
giropay,
ideal,
p24,
sepa_debit,
sofort,
applepay,
googlepay,
affirm,
klarna

Response

Successful Response

data
object[]
required