//native
type Segment = {
token: string;
baseUrl: string;
};
/**
* Update Filter for Destination
* Updates a filter in a Destination.
• When called, this endpoint may generate one or more of the following audit trail events:* Destination Filter Enabled
* Destination Filter Disabled
*/
export async function main(
auth: Segment,
destinationId: string,
filterId: string,
body: {
if?: string;
actions?: {
type: "ALLOW_PROPERTIES" | "DROP" | "DROP_PROPERTIES" | "SAMPLE";
fields?: {};
percent?: number;
path?: string;
}[];
title?: string;
description?: string;
enabled?: false | true;
},
) {
const url = new URL(
`${auth.baseUrl}/destination/${destinationId}/filters/${filterId}`,
);
const response = await fetch(url, {
method: "PATCH",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago