App Authentication

Authenticates an OBO app using the application saved RSA public key.

Authenticate an App with public key

post

Based on an authentication request token signed by the application's RSA private key, authenticate the API caller and return a session token.

A HTTP 401 Unauthorized error is returned on errors during authentication (e.g. invalid app, malformed authentication token, app's public key not imported in the pod, invalid token signature etc.).

Body

Request body for pubkey authentication

tokenstringOptional

a JWT containing the caller's username or application appGroupId and an expiration date, signed by the caller's private key.

Responses
200
OK.
application/json
post
POST /login/pubkey/app/authenticate HTTP/1.1
Host: yourpodurl.symphony.com
Content-Type: application/json
Accept: */*
Content-Length: 16

{
  "token": "text"
}
{
  "name": "text",
  "token": "text",
  "authorizationToken": "text"
}

📘 Requirements

This authentication requires the app to be enabled and to have at least one RSA Public key registered. For more information, refer to Create an RSA Key Pair.

Last updated

Was this helpful?