LogoLogo
  • Overview
  • Authentication
  • Status Webhooks
  • Error Codes
  • Payout API
    • Receiver
      • Create New Receiver
      • Bank Accounts
        • Add AU Bank Account
      • Get Receiver
      • Get Receiver Bank Account
    • Payout
      • Create a Payout Transaction
      • Get Payout
    • Balance
      • Get Account Balance
    • Account
      • Get Current Account
Powered by GitBook
On this page
  1. Payout API
  2. Receiver

Create New Receiver

Create a new receiver under a SubAccount for receiving the payout.

Create a New Receiver

POST /api/receiver

Headers

Name
Value

x-api-key

<token>

signature

<token>

Body

Name
Type
Description

fisrt_name*

string

First Name of the receiver user.

last_name*

string

Last Name of the receiver the user.

email*

string

Email of the receiver the user.

middle_name

string

Middle Name of the receiver the user.

dob*

string

Date of Birth of the receiver the user.

dialcode*

string

Dial Code of the receiver the user.

phone*

string

Phone of the receiver the user.

address*

string

Address of the receiver the user.

address2*

string

Address2 of the receiver the user.

gender*

string

Gender of the receiver the user.

city*

string

City of the receiver the user.

state*

string

State of the receiver the user.

postcode*

string

Postcode of the receiver the user.

country*

string

Country of the receiver the user.

reference

string

Reference of the receiver.

* is mandatory parameter

Example body request

{
    "first_name": "David",
    "last_name": "Lahm",
    "middle_name": "Robert",
    "email":"davidrlahm84@gmail.com",
    "dob": "1990-03-21",
    "dialcode": "61",
    "phone": "213094857",
    "address": "122",
    "address2": "Peel Street",
    "gender": "M",
    "city": "North Melbourne",
    "state": "VIC",
    "postcode": "3051",
    "country": "AUS",
    "reference": "david8740"
}

Response

{
    "message": "Receiver created successfully",
    "payload": {
        "receiver_id": "d81b714c-a082-431a-8935-d0c67ad22c2d",
        "kyc_status": "0"
    }
}
{
    "message": "There was an error while creating a receiver",
    "error": [
        {
            "code": "REVR201",
            "message": "Email already exist"
        }
    ]
}
PreviousReceiverNextBank Accounts