Skip to content

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

Download OpenAPI description
Languages
Servers

https://docs.namirial.app/signbox/

Operations
Operations
Operations

Request

Creates a new token that contains the Registration Authority Officer (RAO) credentials

Bodyapplication/jsonrequired
usernamestring(Username)required

The RAO's digital identity username

passwordstring(Password)

The RAO's digital identity password. If not included in this call, must be included in calls that require RAO's credentials

pinstring(Pin)

The RAO's digital identity PIN. If not included in this call, must be included in calls that require RAO's credentials

envstring(Env)

The API work environment. (sandbox / prod)

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"
  }'

Responses

Successful Response

Bodyapplication/json
any
Response
application/json
{ "status": "success", "message": "Token created", "details": { "token_uid": "14185cd9-c6ec-30f4-9f59-a844a77bc234" } }

Request

Retrieves the token associated credentials with the given unique identifier.
The response gets a true or false value regarding if password and PIN parameters are associated to the token.

Path
token_uidany(Token Uid)required

The token unique identifier

curl -i -X GET \
  'https://docs.namirial.app/signbox/api/v1/token/{token_uid}'

Responses

Successful Response

Bodyapplication/json
any
Response
application/json
{ "status": "success", "details": { "username": "2626807", "password": "true", "pin": "true", "rao_id": "1182", "env": "xxx" } }

Request

Deletes the token with the specified unique identifier.

Path
token_uidany(Token Uid)required

The token unique identifier

curl -i -X DELETE \
  'https://docs.namirial.app/signbox/api/v1/token/{token_uid}'

Responses

Successful Response

Bodyapplication/json
any
Response
application/json
{ "status": "success", "message": "Token 0112c943-87a3-4fdf-b12g-d95233e973b5 deleted successfully" }

Request

Returns a list of all tokens available and their associated data.

curl -i -X GET \
  https://docs.namirial.app/signbox/api/v1/tokens

Responses

Successful Response

Bodyapplication/json
any
Response
application/json
{ "status": "success", "detail": { "6d1cae4d55be4cdf9cac50ee36f73406": {} } }
Operations
Operations