Verify stamp duty
POST /api/v1/Identity/verification/stamp-duty
Description
This endpoint is used to verify stamp duty information.
Headers:
- Accept-Language: optional, allows changing default response message language, type: string
Content-Type:
- text/plain
- application/json
- text/json
ApiKey:
- No API key required
Request Body:
- An object of the StampDutyRequest schema.
URL: /api/v1/Identity/verification/stamp-duty
Query Parameters:
- None
params:
- version: string, required
Response: The response is a "Success" status with a code of 200.
Error Codes:
- 400: Bad Request
- 404: Resource not found
- 500: Internal server error
Example:
bashCopy codePOST /api/v1/Identity/verification/stamp-duty
Request Body:
{
"stampDuty": "1234567890"
}
Response:
jsonCopy codeHTTP/1.1 200 OK
{
"name": "John Doe",
"address": "123 Main St, Anytown, USA",
"dob": "1970-01-01",
"verification_status": "Valid"
}
Headers
Accept-Language Change default response message language from English(en). Available languages fr,en Content-Type application/json
Accept text/plain
Body raw(json)
{
"number": "<string>",
"customer_name": "<string>",
"customer_reference": "<string>"
}