Personio
Features
Features
Status
Getting started
API gotchas
terapi.auth('personio-recruiting', 'test-connection-id', { params: { companyId: '33434', partnerId: 'YOUR_CUSTOM_NAME', appId: 'UNIQUE_ID', company: 'company-b' }, credentials: { apiKey: '<secure-key>' } }) .then((result: { providerConfigKey: string; connectionId: string }) => { // do something }).catch((err: { message: string; type: string }) => { // handle error }); terapi.auth('personio', 'test-connection-id', { params: { partnerId: 'YOUR_CUSTOM_NAME', appId: 'UNIQUE_NAME' }, credentials: { client_id: '<your-client-id>', client_secret: '<your-client-secret>' } }) .then((result: { providerConfigKey: string; connectionId: string }) => { // do something }).catch((err: { message: string; type: string }) => { // handle error });
Last updated