Creates a new token that contains the Registration Authority Officer (RAO) credentials
SignBox API (1.0.0)
For testing purposes, Uanataca provides integrators of a pre-configured test-mode SignBox Optimizer accessible at the following URL: https://optimizer-developers.uanataca.com
For more information about the sandbox environment click here. UANATACA SIGNBOX API Sandbox
https://docs.namirial.app/signbox/
The RAO's digital identity password. If not included in this call, must be included in calls that require RAO's credentials
The RAO's digital identity PIN. If not included in this call, must be included in calls that require RAO's credentials
https://docs.namirial.app/signbox/api/v1/token
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.namirial.app/signbox/api/v1/token \
-H 'Content-Type: application/json' \
-d '{
"username": "string",
"password": "string",
"pin": "string",
"env": "string"
}'{ "status": "success", "message": "Token created", "details": { "token_uid": "14185cd9-c6ec-30f4-9f59-a844a77bc234" } }
https://docs.namirial.app/signbox/api/v1/token/{token_uid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.namirial.app/signbox/api/v1/token/{token_uid}'{ "status": "success", "details": { "username": "2626807", "password": "true", "pin": "true", "rao_id": "1182", "env": "xxx" } }
https://docs.namirial.app/signbox/api/v1/token/{token_uid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.namirial.app/signbox/api/v1/token/{token_uid}'{ "status": "success", "message": "Token 0112c943-87a3-4fdf-b12g-d95233e973b5 deleted successfully" }
https://docs.namirial.app/signbox/api/v1/tokens
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.namirial.app/signbox/api/v1/tokens{ "status": "success", "detail": { "6d1cae4d55be4cdf9cac50ee36f73406": { … } } }