[Seamless Help Center]

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 2 Next »

  1. Authentication

  • Before do any request, we must call to an API to get

accessToken for authenticate an user for each request

  • Authentication URL: ( Get the link from Contemi ).

https://seamless-integration-trial.auth.eu-west-2.amazoncognito.com/token

  • Method: POST

  • Header:

Content-Type: application/x-www-form-urlencoded

  • Body:

grant_type: client_credentials

client_id: {{clientId}}

client_secret: {{clientSecret}}

Note: above client_id, client_secret value is an example, we can get it on Seamless website

  • Postman example (please see it on the attachments):

  • After call to Authentication URL, we will have an accessToken.

  • No labels