Skip to main content
POST
/
api
/
embedded
/
v1
/
link
/
create-link-token
Create Link Token
curl --request POST \
  --url https://api.bindbee.dev/api/embedded/v1/link/create-link-token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "end_user_data": {
    "org_name": "<string>",
    "origin_id": "<string>",
    "email": "my_email@gmail.com"
  },
  "category": "HRIS",
  "integration": "<string>"
}
'
{
  "link_token": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
end_user_data
End user data · object
required

End user data

category
enum<string>
required

Categories which will be shown in unify link

Available options:
HRIS,
ATS,
CUSTOM,
LMS
Example:

"HRIS"

integration
string
required

Integration slug of the integration

Example:

"bamboohr"

Response

Successful Response

Link token to be used for generating unify link

Example:

"KJDXZk8zC8Tdr-suQCy7zkALZVLjhKXyMd83leqheEGQpBx_evXrHA"