import { PieceAuth } from '@activepieces/pieces-framework';
import { httpClient, HttpMethod } from '@activepieces/pieces-common';
import { BASE_URL, extractApiKey } from './common/props';
export const bookedinAuth = PieceAuth.SecretText({
displayName: 'API Key',
required: true,
description: `To connect your Bookedin account, please follow these steps to retrieve your API Key:
1. Log in to your Bookedin Dashboard: dashboard.bookedin.ai
2. From the left menu, go to **Business**
3. Open **Settings**
4. Click on **API Key**
5. Copy your API Key (starts with **sk_…**)
6. Paste the key below to authorize the integration
Your API Key allows Activepieces to securely access your Bookedin leads, agents, and booking data.
`,
validate: async ({ auth }) => {
try {
const apiKey = extractApiKey(auth);
if (!apiKey) {
return { valid: false, error: 'API Key is empty' };
}
await httpClient.sendRequest({
method: HttpMethod.GET,
url: `${BASE_URL}/agents/`,
headers: {
'X-API-Key': apiKey as string,
'accept': 'application/json'
},
queryParams: {
skip: '0',
limit: '1'
}
});
return { valid: true };
} catch (e: any) {
const errorMessage = e?.response?.body?.detail || e?.message || 'Connection failed';
return {
valid: false,
error: errorMessage
};
}
},
});