How to create a merchant in Frisbii Partner Admin using API

Prev Next

Reseller partners can create new merchants directly using the Frisbii Partner API. The process consists of three steps:

  1. Login

  2. Create a merchant

  3. Set the account live


1. Login

Authenticate using an email and password to receive a token.
It’s recommended to create a dedicated user account for this purpose. Note that the token is valid for 10 minutes.

Request:

curl -X POST \
--url https://partner-api.reepay.com/v1/login \
-H "Content-Type: application/json" \
-d '{
  "email": "email@test.dk",
  "password": "password"
}'

Response:

{
  "token": "TOKEN",
  "user": {
    "id": ".kjhadkasd",
    "email": "email@test.dk"
  },
  "organisations": [],
  "groups": ["org_adm"],
  "token_ttl": 10
}

2. Create a merchant

Use the token from step 1 in the header as x-auth-token.

Request:

curl -X POST \
--url https://partner-api.reepay.com/v1/signup \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'x-auth-token: TOKEN' \
-d '{
  "country": "DK",
  "currency": "DKK",
  "company_name": "Company ApS",
  "email": "owner@example.com"
}'

Response:

{
  "partner_organisation_id": "12345678",
  "organisation_id": "123456789"
}

3. Set the account live

Once the merchant is created, you need to activate the account. You can either use an API endpoint or contact support.

Option 1: Use the API

To use the activation API, you must first be whitelisted. Contact support@frisbii.com to request access.

Request:

curl -X POST \
--url https://hook.reepay.integromat.celonis.com/mnsca7l50lik7s116epl366wmgli4egl \
-H "Content-Type: application/json" \
-d '{
  "partner": "your partner name",
  "orgname": "your merchant’s name",
  "orgid": "merchant’s Frisbii organisation ID"
}'

Response:

Accepted
Option 2: Send an email

Email support@frisbii.com with the following details:

  • organisation_id (from step 2)

  • partner_organisation_id (from step 2)

  • CVR number for the merchant company

Note: Billing starts once the account is set live.