mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
21 lines
626 B
TypeScript
21 lines
626 B
TypeScript
import { INTERNAL_SECRET, WEBAPP_URL } from "@formbricks/lib/constants";
|
|
import { TPipelineInput } from "@formbricks/types/pipelines";
|
|
|
|
export async function sendToPipeline({ event, surveyId, environmentId, response }: TPipelineInput) {
|
|
return fetch(`${WEBAPP_URL}/api/pipeline`, {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
"x-api-key": INTERNAL_SECRET,
|
|
},
|
|
body: JSON.stringify({
|
|
environmentId: environmentId,
|
|
surveyId: surveyId,
|
|
event,
|
|
response,
|
|
}),
|
|
}).catch((error) => {
|
|
console.error(`Error sending event to pipeline: ${error}`);
|
|
});
|
|
}
|