Setup a new agreement

Sign up with Betalingsservice

First step is to register for a Betalingsservice agreement here. Debitdirect can also sign you up as a paid service.

When you sign up for the agreement, be sure to use the following identification in the step of using your designated data processer (data leverandør). Be sure to indicate that you want to use an external data processor.

38571583

Expect 4-5 business days before your get confirmation on your company e-boks. You can continue with the next steps, however your agreement will not be active until you get confirmation from Mastercard Payment Services.

Create an Agreement

Use a scheme of mastercard-bs to indicate that you are creating a Betalingsservice agreement. More detail on the API endpoint can be found here.

Use the following snippet:

curl -X POST https://api.debitdirect.io/merchants/agreements \
    -H 'Content-Type: application/json' \
    -H 'Authorization: Basic {authentication}' \
    -d '{
        "Scheme" : "mastercard-bs"
        , "SchemeData" : {
            "CvrNumber" : "12345678",
            "CreditorNumber" : "87654321",
            "PbsNumber" : "87654321",
            "AgreementType" : "standard"
            }
            , "Test" : false
        }'

You will get a response as follows:

Last updated