post http://api.pandascrow.io/sandbox/index/user/auth/signup
This endpoint would allow you to create a user account with Pandascrow.
[POST] {{baseurl}}/sandbox/index/user/auth/signup
Pandascrow Users
To create a user account over this endpoint, you'll need to pass the information required in the table below.
Param | Required? | Description | type |
---|---|---|---|
name | Yes | Legal Full Name of user | String |
Yes | Email address of user | String | |
password | Yes | Password of user. It must be strong and protected password with up to or more than 8 Characters. (We encrypt password "AES-256-CBC") | String |
gender | Yes | Gender of user. Allowed values are: Male, Female or Custom. | String |
phone | Yes | Telephone number of users. Must start with +(country code) [before phone number] | String |
country | Yes | Enter the country of residence for users. | String |
state | No | Enter the state of residence for users. | String |
address | No | Enter the address of residence for users. | String |
username | No | Username or Nickname of user. It is not unique. | String |
dob | No | Date of birth of users. Date format: YYYY-MM-DD (e.g 1990-12-01) | String |
acc_type | Yes | Account type of user. It is subjected into [business or individual]; Where; business = 1, and individual = 2. | Integer |
currency | Yes | Currency comes in short (currently only accepting NGN, GHS, USD, & ZAR) | String |
ref_token | No | This is referral code of the user that referred you to Pandascrow. | String |
API Object
{
"status": 200,
"data": {
"userID": 1,
"message": "user signed up successfully"
}
}
curl -L -X POST '{{baseurl}}/sandbox/index/user/auth/signup' \
-H 'Content-Type: application/json' \
-H 'Authorization: SECRET_KEY'
-H 'Appid: appid'