Bootstrap with company context
GET
/portal/{companyCodeContext}/bootstrap
const url = 'https://auth.timetonic.com/portal/COMPANY_A/bootstrap';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://auth.timetonic.com/portal/COMPANY_A/bootstrapInitialize session with specific company context
Parameters
Section intitulée « Parameters »Path Parameters
Section intitulée « Path Parameters »companyCodeContext
required
string
Example
COMPANY_ACompany account code for portal-scoped requests
Query Parameters
Section intitulée « Query Parameters »linkId
string
token
string
mail
string format: email
Responses
Section intitulée « Responses »Bootstrap data with company context
Media typeapplication/json
object
csrfToken
CSRF token for form submissions
string
currentTcVersion
Current Terms & Conditions version
string
currentTcUrls
T&C URLs by language
object
key
additional properties
string format: uri
authenticationPolicies
Company authentication policy settings
object
passwordValidationPoliciesDescription
string
action
Suggested action based on pass-through params
string
email
Pre-filled email from mail parameter
string format: email
Example
{ "currentTcVersion": "1.0", "currentTcUrls": { "en": "https://home.timetonic.com/legal/terms-of-service", "fr": "https://fr.home.timetonic.com/legal/terms-of-service" }, "action": "signup"}