Identity
This is an object for verification via several services. The request for a verification will first check if there is sufficient balance in your account and if successful, an order will be placed. The response will show that the request is in sync. A callback url is required so as to receive the final status of the verification. You could also check the status of the request using the status object.
POST: /v1/b2b/verify
Services
kyc
Request
curl -X POST \
https://api.tupay.africa:8888/v1/b2b/verify/{service} \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {token}' \
-H 'Idempotency-Key: {key}' \
-d '"{"documentType": "{type}", "documentNumber": "{number}", "countryCode": {countryCode}, "firstName": {firstName}, "lastName": {lastName}, "dateOfBirth": {dateOfBirth}}"'
Identity Request
{
"documentType": "ID",
"documentNumber": "1234",
"countryCode": "KE",
"firstName": "John",
"lastName": "Maina",
"dateOfBirth": "2000-01-01",
"reference": "ref1234"
}
documentType
(String): The document type e.g. ID / PASSPORT / ALIENIDdocumentNumber
(String): The document numbercountryCode
(String): The country code e.g. KE / RW (Kenya, Rwanda)firstName
(String): The first namelastName
(String): The last namedateOfBirth
(String): The date of birth (format yyyy-MM-dd)reference
(String): Your unique id *optional
Response
Identity Response
{
"id": "ABCDEFG250101",
"reference": "ref1234",
"status": 20,
"mesasge": "Pending"
}
id
(String): The transaction id (Optional incase of failure)reference
(String): Your unique idstatus
(Integer): The status of the requestmessage
(String): The response message
Callback
These are parameter that are included together with callback parameters (see callback next).
identity.documentType
(String): The document typeidentity.documentNumber
(String): The document numberidentity.documentSerialNumber
(String): The document serial numberidentity.documentIssueDate
(String): The document issue dateidentity.IssuedBy
(String): The document issuing authorityidentity.customer.firstName
(String): The first nameidentity.customer.middleName
(String): The middle nameidentity.customer.lastName
(String): The last nameidentity.customer.gender
(String): The genderidentity.customer.nationality
(String): The nationalityidentity.customer.birthDate
(String): The date of birth