//native
type Bitly = {
token: string;
};
/**
* Add Custom Bitlink
* Add a keyword (or "custom back-half") to a Bitlink with a Custom Domain (domains must match). This endpoint can also be used for initial redirects to a link.
*/
export async function main(
auth: Bitly,
body: { custom_bitlink?: string; bitlink_id?: string },
) {
const url = new URL(`https://api-ssl.bitly.com/v4/custom_bitlinks`);
const response = await fetch(url, {
method: "POST",
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 428 days ago