The unique identifier of the Request
Registration Authority
/- Enterprise Documentation
- DEVELOPER DOCUMENTATION
- GENERATE CONTRACT
LIST REQUEST
CREATE REQUEST
GET REQUEST
UPDATE REQUEST
CANCEL REQUEST
VALIDATE REQUEST
GENERATE RAO DECLARATION
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
OTP FOR RESET/UNLOCK PIN
RESET/UNLOCK PIN
GENERATE CONTRACT
UANATACA RA API DOCUMENTATION (v1)
Request
Generates a contract associated to a request that must be signed by a RAO.
The contract is signed in the approve request call.
https://api.uanataca.com/api/v1/requests/{id}/generate_document
- 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_document' \
-H 'Content-Type: application/json' \
-d '{
"doctype": "contract"
}'Response
application/json
{ "document": "%PDF-1.4\n%���� ReportLab Generated PDF document http://www.reportlab.com\n1 0 obj\n<<\n/F1 2 0 R\n>>\nendobj\n2 0 obj\n<<\n/Bas (...) " }
https://api.uanataca.com/api/v1/requests/{id}/pl_upload_document
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.uanataca.com/api/v1/requests/{id}/pl_upload_document' \
-H 'Content-Type: multipart/form-data' \
-F document=string \
-F type=document_frontResponse
application/json
{ "pk": 48312, "type": "document_front" }
https://api.uanataca.com/api/v1/requests/{id}/pl_delete_document
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.uanataca.com/api/v1/requests/{id}/pl_delete_document' \
-H 'Content-Type: multipart/form-data' \
-F docpk=stringResponse
application/json
{ "status": "Document deleted successfully" }