To set up the HTTP POST credentials for your SSO configuration with Sense AI using Microsoft Entra, you will need to gather the following information:
- URL: This should be the endpoint provided by Sense AI that will accept HTTP POST requests. You will need to obtain this from their documentation or support.
- HTTP Header Name: This could be a standard header such as
Authorization
if you are using bearer tokens, or it could be a custom header specified by Sense AI. - HTTP Header Value: This is typically a secret or token that you will use for authentication. If you are using a bearer token, this will be the token itself. You may need to generate this token through Microsoft Entra or obtain it from your application configuration.
- Request Body Format: You can choose between Standard JSON or Newline Delimited JSON (NDJSON). The choice depends on how you want the data to be structured when sent to the endpoint. Standard JSON sends a JSON array, while NDJSON allows for individual event processing.
To find the necessary tokens or credentials, you may need to refer to the Microsoft Entra portal where you registered your application. Look for the application settings, specifically under the "Certificates & secrets" section, where you can create and manage client secrets.
If you are using Microsoft Graph for API interactions, ensure that you have the correct permissions set up to access the necessary data.
References: