ShopCreate Redirect Clickout Link

Create Redirect Clickout Link

Create a clickout link that signs the user in and drops them on a shop overview page — their job list or their bookings — without going through the promote flow.

Requires a partner-scoped API key; company-scoped keys can only use Create Promote Clickout Link.

curl -X POST "https://api.getkini.com/clickout/redirect/" \
  -H "Content-Type: application/json" \
  -H "Company-Id: 1" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -d '{
  "email": "jane.doe@example.com",
  "resource": "bookings"
}'
{
  "data": "https://app.getkini.com/companies/1/bookings"
}
POST
/clickout/redirect/
POST
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token
Bearer Tokenstring
Required

Authenticate every request with an API key from the Kini Partner App, sent as Authorization: Bearer <your_api_key>.

Authenticate every request with an API key from the Kini Partner App, sent as Authorization: Bearer <your_api_key>.
Content-Typestring
Required

The media type of the request body

Options: application/json
header
Company-Idinteger
Required

Kini ID of the company the key is associated with

emailstring
Required

Email address of the user the link is issued for. A shop user is created and added to the company on first use.

Format: email
resourcestring
Required

Page to land on. Enum: jobs (the company's job list), bookings (the company's job bookings).

Options: jobs, bookings
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token. Authenticate every request with an API key from the Kini Partner App, sent as Authorization: Bearer \<your_api_key\>.

Headers

Company-Idinteger
Required

Kini ID of the company the key is associated with

Example:
1

Body

application/json
emailstring
Required

Email address of the user the link is issued for. A shop user is created and added to the company on first use.

Example:
jane.doe@example.com
resourcestring
Required

Page to land on. Enum: jobs (the company's job list), bookings (the company's job bookings).

Allowed values:jobsbookings

Responses

datastring

Clickout URL. Signs the user in and lands them on the target page. Valid for one hour.