type Stripe = {
token: string;
};
/**
* Post payment intents intent increment authorization
* Perform an incremental authorization on an eligible
PaymentIntent.
*/
export async function main(
auth: Stripe,
intent: string,
body: {
amount: number;
application_fee_amount?: number;
description?: string;
expand?: string[];
metadata?: { [k: string]: string };
statement_descriptor?: string;
transfer_data?: { amount?: number; [k: string]: unknown };
}
) {
const url = new URL(
`https://api.stripe.com/v1/payment_intents/${intent}/increment_authorization`
);
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 payment intents intent increment authorization
* Perform an incremental authorization on an eligible
PaymentIntent.
*/
export async function main(
auth: Stripe,
intent: string,
body: {
amount: number;
application_fee_amount?: number;
description?: string;
expand?: string[];
metadata?: { [k: string]: string };
statement_descriptor?: string;
transfer_data?: { amount?: number; [k: string]: unknown };
}
) {
const url = new URL(
`https://api.stripe.com/v1/payment_intents/${intent}/increment_authorization`
);
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 payment intents intent increment authorization
* <p>Perform an incremental authorization on an eligible
<a href="/docs/api/payment_intents/object">PaymentIntent</a>.
*/
export async function main(
auth: Stripe,
intent: string,
body: {
amount: number;
application_fee_amount?: number;
description?: string;
expand?: string[];
metadata?: { [k: string]: string };
statement_descriptor?: string;
transfer_data?: { amount?: number; [k: string]: unknown };
}
) {
const url = new URL(
`https://api.stripe.com/v1/payment_intents/${intent}/increment_authorization`
);
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