auth.ts•777 B
import { PieceAuth } from '@activepieces/pieces-framework';
import { makeRequest } from './client';
import { HttpMethod } from '@activepieces/pieces-common';
export const gladiaAuth = PieceAuth.SecretText({
displayName: 'Gladia API Key',
description: `
Enter your Gladia API Key. You can find it in your Gladia account (https://app.gladia.io/apikeys).
`,
required: true,
validate: async ({ auth }) => {
if (auth) {
try {
await makeRequest(auth as string, HttpMethod.GET, '/transcription');
return {
valid: true,
};
} catch (error) {
return {
valid: false,
error: 'Invalid Api Key',
};
}
}
return {
valid: false,
error: 'Invalid Api Key',
};
},
});