1. Token

Obtaining the Token for Accessing the Signature Operations

Firstly, the document signature application/portal calls the UAEPASS API to obtain the access token using client credentials issued to them.

API Calling Method

POST stg-id.uaepass.ae/trustedx-authserver/oauth/main-as/token

HTTP/1.1

Headers

Name
Type
Description

Authorization

string

Basic ZG9jc2lnbjpkZW1vZGVtbw==

Content-Type

string

application/x-www-form-urlencoded

grant_type

string

client_credentials

scope

string

urn:safelayer:eidas:sign:process:document

{
    "access_token": "6fed0c30a51643f9b6ad7365cf90d7e.....72848cf0fb3aee9ad5ac1811212",
    "token_type": "Bearer",
    "expires_in": 600,
    "scope": "urn:safelayer:eidas:sign:process:document"
}
 
circle-info

Note: Token remains valid for 10 mins. If the same user signs the document within that time period, token endpoint is not required to be invoked again.

Last updated

Was this helpful?