//native
type Pinterest = {
token: string;
};
/**
* Get Ocpm eligible conversion tags
* Get Ocpm eligible conversion tag events for an ad account.
*/
export async function main(auth: Pinterest, ad_account_id: string) {
const url = new URL(
`https://api.pinterest.com/v5/ad_accounts/${ad_account_id}/conversion_tags/ocpm_eligible`,
);
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 537 days ago