1 | |
2 | type Paypal = { |
3 | clientId: string; |
4 | clientSecret: string; |
5 | }; |
6 |
|
7 | async function getToken(auth: Paypal): Promise<string> { |
8 | const url = new URL(`https://api-m.paypal.com/v1/oauth2/token`); |
9 | const response = await fetch(url, { |
10 | method: "POST", |
11 | headers: { |
12 | Authorization: `Basic ${btoa(`${auth.clientId}:${auth.clientSecret}`)}`, |
13 | }, |
14 | body: new URLSearchParams({ |
15 | grant_type: "client_credentials", |
16 | }), |
17 | }); |
18 | if (!response.ok) { |
19 | const text = await response.text(); |
20 | throw new Error(`Could not get token: ${response.status} ${text}`); |
21 | } |
22 | const json = await response.json(); |
23 | return json.access_token; |
24 | } |
25 | |
26 | * Partially update web experience profile |
27 | * Partially-updates a web experience profile, by ID. In the JSON request body, specify a patch object, the path of the profile location to update, and a new value. |
28 | */ |
29 | export async function main( |
30 | auth: Paypal, |
31 | id: string, |
32 | body: { |
33 | op: "add" | "remove" | "replace" | "move" | "copy" | "test"; |
34 | path?: string; |
35 | value?: {}; |
36 | from?: string; |
37 | }[], |
38 | ) { |
39 | const token = await getToken(auth); |
40 | const url = new URL( |
41 | `https://api-m.paypal.com/v1/payment-experience/web-profiles/${id}`, |
42 | ); |
43 |
|
44 | const response = await fetch(url, { |
45 | method: "PATCH", |
46 | headers: { |
47 | "Content-Type": "application/json", |
48 | Authorization: "Bearer " + token, |
49 | }, |
50 | body: JSON.stringify(body), |
51 | }); |
52 | if (!response.ok) { |
53 | const text = await response.text(); |
54 | throw new Error(`${response.status} ${text}`); |
55 | } |
56 | return await response.json(); |
57 | } |
58 |
|