Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Pathfinder is supporting supports three different types of authenticationauthentications. Depending of on your needs and the support of your client library you can choose between the following authentication types:

  • using API Keys

  • using JWT

  • using basic Basic authentication

API KEY

This authentication method allows any user with required permission the correct permissions to create a special token via Pathfinder Client which . This can be used in the authorization header in every call for calls to the API to allow access to the API in the name on behalf of the creator user without knowing requiring information about the user name and password. This is meant to be used in 3rd party applications that will often be accessing frequently access the API.

The API tokens can have different expiration dates depending on the properties set while creating them.

For more information, go to: Creating API key in Pathfinder client.

JWT

This authentication method requires the user to first login using user name and password , an and then use store the token provided token as a response. After that, the provided token is used in the authorization header in for every call to the API to allow access to the API. The JWT tokens are only valid for 24hs24 hours.

Basic authentication

This authentication method requires the user to login using a user name and password in for every call to the API. In the request headers, you will see that the authorization header is going to pass the API a Base64 encoded string to the API, representing your username and password values, appended to the text "Basic". See RFC7617 for details.