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": "Kunal Organization",
    "origin_id": "2kh3ub45",
    "email": "[email protected]"
  },
  "category": "HRIS",
  "integration": "bamboohr"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<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,
LMS
Example:

"HRIS"

integration
string
required

Integration slug of the integration

Example:

"bamboohr"

Response

Successful Response