get-custom-source-by-id.ts•896 B
import { createAction, Property } from '@activepieces/pieces-framework';
import { ChatAidAuth } from '../common/auth';
import { HttpMethod } from '@activepieces/pieces-common';
import { makeRequest } from '../common/client';
export const getCustomSourceById = createAction({
auth: ChatAidAuth,
name: 'getCustomSourceById',
displayName: 'Get Custom Source by ID',
description: 'Retrieve single source details by ID',
props: {
sourceId: Property.ShortText({
displayName: 'Source ID',
description: 'The ID of the custom source to retrieve',
required: true,
}),
},
async run(context) {
const sourceId = context.propsValue.sourceId as string;
const response = await makeRequest(
context.auth as string,
HttpMethod.GET,
`/external/sources/custom/${encodeURIComponent(sourceId)}`,
undefined
);
return response;
},
});