Skip to main content
Version: 2.0.0

How to Use

Clause Library

Clause Library The Clause Library table shows All Clauses available in the system with their status.

FeatureDescription
SearchFilter clauses by name or other criteria
Create ClauseCreate a new clause using the Create Clause option
CopyCopy an existing clause using the Copy option

Clause Details

Clause Details The Clause Details view shows the full details of a clause along with the Activity Log and Workflow details.


Create Clause

Clause Create

  1. Provide the basic details of the clause and click Continue.
  2. Enter the clause content in the Rich Text Editor.
    • The editor provides a variety of text formatting options.

Gen AI for Clause Generation

Clause Gen AI The integrated Gen AI feature in the Rich Text Editor allows users to generate clauses from prompts.

StepAction
1Click the Gen AI prompt box — a default prompt is displayed
2Customize the prompt to fit specific clause requirements
3Click Regenerate to improve the quality of the generated clause
4Click Insert to copy the generated clause into the editor

SuccessFactor Integration — Calling via Postman

To call SF APIs, you need an authorization code generated using an assertion token.

1. Fetch Assertion Token:

curl --location 'https://api68sales.successfactors.com/oauth/idp' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Application-Interface-Key: saptest0' \
--header 'Accept: /' \
--data-urlencode 'client_id=ZTlhMDMzOTFiMzA1YWQ2NzI2Y2IyYWNlOGMyNA' \
--data-urlencode 'token_url=https://api68sales.successfactors.com/oauth/token' \
--data-urlencode 'user_id=sfadmin' \
--data-urlencode 'private_key=...'

Get Authorization Token The response contains the Assertion Token.

2. Fetch Authorization Token:

curl --location 'https://api68sales.successfactors.com/oauth/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Application-Interface-Key: saptest0' \
--header 'Accept: application/json' \
--data-urlencode 'assertion={assertion_code}' \
--data-urlencode 'client_id=ZTlhMDMzOTFiMzA1YWQ2NzI2Y2IyYWNlOGMyNA' \
--data-urlencode 'grant_type=urn:ietf:params:oauth:grant-type:saml2-bearer' \
--data-urlencode 'company_id=SFCPART000881'

Get Assertion Token Use this token as the Bearer token for SF API calls.

3. Fetch SF API Data:

curl --location 'https://api68sales.successfactors.com:443/odata/v2/PerPerson' \
--header 'Authorization: Bearer {token}' \
--header 'Application-Interface-Key: saptest0' \
--header 'Accept: application/json'

Fetch SF API

ParameterDescription
expandShow related details alongside the main record
selectReturn only the specified fields