Checks if the given contact data is already in use.
Registration Authority
/- Enterprise Documentation
- DEVELOPER DOCUMENTATION
- OTP FOR RESET/UNLOCK PIN
LIST REQUEST
CREATE REQUEST
GET REQUEST
UPDATE REQUEST
CANCEL REQUEST
VALIDATE REQUEST
GENERATE RAO DECLARATION
GENERATE CONTRACT
GENERATE CONTRACT
DELETE DOCUMENT
GET A DOCUMENT
GET ALL DOCUMENTS
APPROVE REQUEST
GET PRE-AUTHENTICATION LINK
IS RENEWABLE
ENABLE RENEWAL
DISABLE RENEWAL
GET RENEWAL STATUS
CHECK CONTACT DATA
RESET/UNLOCK PIN
OTP FOR RESET/UNLOCK PIN
UANATACA RA API DOCUMENTATION (v1)
https://api.uanataca.com/api/v1/requests/check_contact_data_limits/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.uanataca.com/api/v1/requests/check_contact_data_limits/ \
-H 'Content-Type: */*' \
-d '[object Object]'Response
{ "reason": "string", "result": "string", "registration_authority": 0 }
https://api.uanataca.com/api/v1/requests/{id}/generate_otp_for_unlock
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.uanataca.com/api/v1/requests/{id}/generate_otp_for_unlock'Response
application/json
{ "status": "success", "message": "OTP sent via SMS" }
https://api.uanataca.com/api/v1/requests/{id}/unlock_pin
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.uanataca.com/api/v1/requests/{id}/unlock_pin' \
-H 'Content-Type: application/json' \
-d '{
"scratchcard": "string",
"enrollment_code": "string",
"newpin": "string",
"otp": "string"
}'Response
application/json
{ "status": "success", "message": "Pin unlocked successfully" }