Versions Compared

Key

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

...

Code Block
languagejson
{
  user: "Test"
  password "SHA256value"
  api-key: "optional"
}
  • SSO with session token

    • redirect to single sign on

    • redirect back to IATF CARA with session information

  • Using a session token

    • Authentication will be send using post

    • Received token will be available for the active CARA session (not saved in the browser cache)

    • Received token will be send on each request using

      • get url/(token}

      • Header

      • post

        Code Block
        {
          token: "required session token"
          api-key: "optional"
        }

...