CardUsers
Create Card User
API Documentation
Business
- Account
- Disburse
- Payment
Cards
Transactions
Miscellaneous
CardUsers
Create Card User
POST
/
card-users
/
create
curl --request POST \
--url https://api.sandbox.saalal.com/v1/card-users/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"first_name": "your-firstname",
"last_name": "your-lastname",
"address": "your-address",
"phone": "774964996",
"email": "your@mail.com",
"id_no": "20119991010000621",
"selfie_image": "https://your-image.com",
"id_image": "https://your-image.com",
"back_id_image": "https://your-image.com"
}'
{
"message": "OK",
"statusCode": 200,
"data": {
"message": "Card User verification in progress",
"userCard": {
"reference": "88c2f29c-2fba-40f1-a303-b33008e42fe9",
"first_name": "Testeur",
"last_name": "glock",
"address": "Pikine Texaco 11",
"id_no": "17521999133211635",
"phone": "221776854872",
"email": "testingboy@gmail.com"
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://api.sandbox.saalal.com/v1/card-users/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"first_name": "your-firstname",
"last_name": "your-lastname",
"address": "your-address",
"phone": "774964996",
"email": "your@mail.com",
"id_no": "20119991010000621",
"selfie_image": "https://your-image.com",
"id_image": "https://your-image.com",
"back_id_image": "https://your-image.com"
}'
{
"message": "OK",
"statusCode": 200,
"data": {
"message": "Card User verification in progress",
"userCard": {
"reference": "88c2f29c-2fba-40f1-a303-b33008e42fe9",
"first_name": "Testeur",
"last_name": "glock",
"address": "Pikine Texaco 11",
"id_no": "17521999133211635",
"phone": "221776854872",
"email": "testingboy@gmail.com"
}
}
}