type Stripe = {
token: string;
};
/**
* Post promotion codes
* A promotion code points to a coupon. You can optionally restrict the code to a specific customer, redemption limit, and expiration date.
*/
export async function main(
auth: Stripe,
body: {
active?: boolean;
code?: string;
coupon: string;
customer?: string;
expand?: string[];
expires_at?: number;
max_redemptions?: number;
metadata?: { [k: string]: string };
restrictions?: {
currency_options?: {
[k: string]: { minimum_amount?: number; [k: string]: unknown };
};
first_time_transaction?: boolean;
minimum_amount?: number;
minimum_amount_currency?: string;
[k: string]: unknown;
};
}
) {
const url = new URL(`https://api.stripe.com/v1/promotion_codes`);
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
Authorization: "Bearer " + auth.token,
},
body: encodeParams(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
function encodeParams(o: any) {
function iter(o: any, path: string) {
if (Array.isArray(o)) {
o.forEach(function (a) {
iter(a, path + "[]");
});
return;
}
if (o !== null && typeof o === "object") {
Object.keys(o).forEach(function (k) {
iter(o[k], path + "[" + k + "]");
});
return;
}
data.push(path + "=" + o);
}
const data: string[] = [];
Object.keys(o).forEach(function (k) {
if (o[k] !== undefined) {
iter(o[k], k);
}
});
return new URLSearchParams(data.join("&"));
}
Submitted by hugo697 368 days ago
type Stripe = {
token: string;
};
/**
* Post promotion codes
* A promotion code points to a coupon. You can optionally restrict the code to a specific customer, redemption limit, and expiration date.
*/
export async function main(
auth: Stripe,
body: {
active?: boolean;
code?: string;
coupon: string;
customer?: string;
expand?: string[];
expires_at?: number;
max_redemptions?: number;
metadata?: { [k: string]: string };
restrictions?: {
currency_options?: {
[k: string]: { minimum_amount?: number; [k: string]: unknown };
};
first_time_transaction?: boolean;
minimum_amount?: number;
minimum_amount_currency?: string;
[k: string]: unknown;
};
}
) {
const url = new URL(`https://api.stripe.com/v1/promotion_codes`);
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
Authorization: "Bearer " + auth.token,
},
body: encodeParams(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
function encodeParams(o: any) {
function iter(o: any, path: string) {
if (Array.isArray(o)) {
o.forEach(function (a) {
iter(a, path + "[]");
});
return;
}
if (o !== null && typeof o === "object") {
Object.keys(o).forEach(function (k) {
iter(o[k], path + "[" + k + "]");
});
return;
}
data.push(path + "=" + o);
}
const data: string[] = [];
Object.keys(o).forEach(function (k) {
if (o[k] !== undefined) {
iter(o[k], k);
}
});
return new URLSearchParams(data.join("&"));
}
Submitted by hugo697 795 days ago
type Stripe = {
token: string;
};
/**
* Post promotion codes
* <p>A promotion code points to a coupon. You can optionally restrict the code to a specific customer, redemption limit, and expiration date.</p>
*/
export async function main(
auth: Stripe,
body: {
active?: boolean;
code?: string;
coupon: string;
customer?: string;
expand?: string[];
expires_at?: number;
max_redemptions?: number;
metadata?: { [k: string]: string };
restrictions?: {
currency_options?: {
[k: string]: { minimum_amount?: number; [k: string]: unknown };
};
first_time_transaction?: boolean;
minimum_amount?: number;
minimum_amount_currency?: string;
[k: string]: unknown;
};
}
) {
const url = new URL(`https://api.stripe.com/v1/promotion_codes`);
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
Authorization: "Bearer " + auth.token,
},
body: encodeParams(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
function encodeParams(o: any) {
function iter(o: any, path: string) {
if (Array.isArray(o)) {
o.forEach(function (a) {
iter(a, path + "[]");
});
return;
}
if (o !== null && typeof o === "object") {
Object.keys(o).forEach(function (k) {
iter(o[k], path + "[" + k + "]");
});
return;
}
data.push(path + "=" + o);
}
const data: string[] = [];
Object.keys(o).forEach(function (k) {
if (o[k] !== undefined) {
iter(o[k], k);
}
});
return new URLSearchParams(data.join("&"));
}
Submitted by hugo697 922 days ago