//native
type Pinterest = {
token: string;
};
/**
* Update keywords
* Update one or more keywords' bid and archived fields. Archiving a keyword effectively deletes it - keywords no longer receive metrics and no longer visible within the parent entity's keywords list.
*/
export async function main(
auth: Pinterest,
ad_account_id: string,
body: { keywords: { id: string; archived?: false | true; bid?: number }[] },
) {
const url = new URL(
`https://api.pinterest.com/v5/ad_accounts/${ad_account_id}/keywords`,
);
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 536 days ago