Endpoints to manage the service settings
Oneshot API (1.0.0)
One-Shot API for single-use certificate electronic signatures. All endpoints are relative to the base path /oneshot/api/v1.
For the public testing environment (sandbox URL, RAO token, prerequisites, and how to use the test Optimizer), see the Get started guide in the One-Shot documentation: Get started with One-Shot.
https://optimizer-developers.uanataca.com/oneshot/api/v1/
- Public testing environment
https://optimizer-developers.uanataca.com/oneshot/api/v1/api/v1/document/{request_pk}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://optimizer-developers.uanataca.com/oneshot/api/v1/api/v1/document/{request_pk}'{ "status": "success", "detail": { "name": "file", "uid": "604b889f-6b3a-4af7-a24a-b5e610e7f7c1" } }
- Public testing environment
https://optimizer-developers.uanataca.com/oneshot/api/v1/api/v1/document/{request_pk}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://optimizer-developers.uanataca.com/oneshot/api/v1/api/v1/document/{request_pk}'{ "status": "success", "message": "Documents deleted for Request xxx" }
- Public testing environment
https://optimizer-developers.uanataca.com/oneshot/api/v1/api/v1/document/{request_pk}/{document_uid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://optimizer-developers.uanataca.com/oneshot/api/v1/api/v1/document/{request_pk}/{document_uid}?document_type=original'- Public testing environment
https://optimizer-developers.uanataca.com/oneshot/api/v1/api/v1/document/{request_pk}/{document_uid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://optimizer-developers.uanataca.com/oneshot/api/v1/api/v1/document/{request_pk}/{document_uid}'{ "status": "success", "message": "Document 604b889f-6b3a-4af7-a24a-b5e610e7f7c1 deleted" }
- Public testing environment
https://optimizer-developers.uanataca.com/oneshot/api/v1/api/v1/documents/{request_pk}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://optimizer-developers.uanataca.com/oneshot/api/v1/api/v1/documents/{request_pk}'{ "status": "success", "detail": { "b40aa3a6-6e2b-421e-8759-5f7717b35b1a": { … } } }