Footer Section
Explore

The /users/token endpoint must be used to obtain an access token for the current user. The body must contain the base64 data of the encrypted client credentials using the key obtained from the /users/key endpoint.
Content type of the request body.
The name of the storefront used for the request.
In order to obtain a temporary encryption key, a callout must be made to the /users/key endpoint that returns a 64-bit hexadecimal key similar to the following:
Once a key has been obtained, you can use the encryption library of your choice to encrypt the request body with the AES-CBC algorithm.
The result of the encryption should look similar in structure to:
This base64 string is used as the body of the request sent to the /users/token endpoint. Below are a couple of example using popular JavaScript frameworks:
curl --request POST \--url https://documentation.conga.com/user/token \--header 'Accept: application/json' \--header 'Authorization: Basic 123' \--header 'Content-Type: application/json' \--header 'x-storefront: ' \--data '{"username": "sample@example.com","password": "pswd"}'
1{2"title": "success",3"status": 200,4"data": {5"userId": "0050f000008nTccAAE",6"accessToken": "00DG0000000iqtB!ARUAQHofFrVurFKWS8TcFKmhFM1yiA1VBzEVVAOXDB.5r_rlpxXuj53RnqfY2QKUgsL3N.ge5kmSPN5UcHK9iHckog6eTw.4"7}8}