--- title: "How to create a merchant in Frisbii Partner Admin using API" slug: "how-to-create-a-merchant-in-frisbii-partner-admin-using-api" updated: 2025-05-09T08:21:24Z published: 2025-05-09T08:21:24Z canonical: "help.frisbii.com/how-to-create-a-merchant-in-frisbii-partner-admin-using-api" --- > ## Documentation Index > Fetch the complete documentation index at: https://help.frisbii.com/llms.txt > Use this file to discover all available pages before exploring further. # How to create a merchant in Frisbii Partner Admin using API 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:** ```json curl -X POST \ --url https://partner-api.reepay.com/v1/login \ -H "Content-Type: application/json" \ -d '{  "email": "email@test.dk",  "password": "password" }' ``` **Response:** ```json {  "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:** ```json 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:** ```json {  "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**](mailto:support@frisbii.com) to request access. **Request:** ```json 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:** ```plaintext Accepted ``` ##### Option 2: Send an email Email [**support@frisbii.com**](mailto: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.