URL: {{base_url}}/create_user
Method: POST
Bearer Token: Replace this with an actual token in the request

Headers

Subscription: Replace this with an actual subscription in the request

Request Body

KeysValues
forenameEnter the forename of the userRequired
surnameEnter the surname of the userRequired
emailEmail of the UserRequired
usernameThe unique username for the userRequired
phoneNumberThe phone number for the userRequired
businessNameThe name of the businessRequired
currencyEnter the currency code(Int)Required
passwordPassword with minimum of 8 charactersRequired

Currency Codes

CodeCurrency
1Zambian Kwacha
2US Dollar
3Botswana Pula
13Kenyan Shilling
17Nigerian Naira
22Rwanda Franc
31British Pound
32European Euro

Below is an example of the request body

    {
    "forename":"John",
    "surname":"Doll",
    "email": "john@example.com",
    "username":"john32",
    "phoneNumber" : "023232323",
    "businessName" : "Bizy Ban Limited",
    "currency" :1,
    "password" : "Testingpazz12"
    }