Create Wallet

This is the endpoint for creating wallets (accounts)

Create Wallet

POST https://sandbox.temboplus.com/tembo/v1/wallet

Call this endpoint to create a wallet. You should supply KYC information in the request payload as described below. The API returns and .

External reference can optionally be included to associate a wallet with your reference.

Headers

Request Body

{
   "accountNo":"6530000002", // Bank account number
}
curl --request POST \
  --url https://sandbox.temboplus.com/tembo/v1/wallet \
  --header 'content-type: application/json' \
  --header 'x-account-id: ff6IfxxVceIMM6oFAc9Zig' \
  --header 'x-secret-key: HYX5X4is3a4bnJJo4lXM936bFD6B8iMeAtXijNvHXMI==' \
  --header 'x-request-id: 546d7a200cd8cb45d8ac' \
  --data '{
     "firstName": "Manase",
     "middleName": "James",
     "lastName": "Mwina",
     "dateOfBirth": "1985-01-01",
     "gender": "M",
     "identityInfo": {
       "idType": "NATIONAL_ID",
       "idNumber": "1985-1828JD1002",
       "issueDate": "2020-01-01",
       "expiryDate": "2028-01-01"
     },
     "address": {
       "street": "A.H Mwinyi Road",
       "city": "Dar es Salaam",
       "postalCode": "255"
     },
     "mobileNo": "1230008914292",
     "email": "john@email.com",
     "currencyCode": "TZS",
     "externalCustomerRef": "8773663"
  }'

Last updated