1 | |
2 | type Zoho = { |
3 | token: string; |
4 | }; |
5 | |
6 | * Upload photo |
7 | * |
8 | */ |
9 | export async function main( |
10 | auth: Zoho, |
11 | module_api_name: string, |
12 | id: string, |
13 | restrict_triggers: string | undefined, |
14 | body: { file?: {} }, |
15 | ) { |
16 | const url = new URL( |
17 | `https://zohoapis.com/crm/v8/${module_api_name}/${id}/photo`, |
18 | ); |
19 | for (const [k, v] of [["restrict_triggers", restrict_triggers]]) { |
20 | if (v !== undefined && v !== "" && k !== undefined) { |
21 | url.searchParams.append(k, v); |
22 | } |
23 | } |
24 | const formData = new FormData(); |
25 | for (const [k, v] of Object.entries(body)) { |
26 | if (v !== undefined && v !== "") { |
27 | formData.append(k, String(v)); |
28 | } |
29 | } |
30 | const response = await fetch(url, { |
31 | method: "POST", |
32 | headers: { |
33 | Authorization: "Zoho-oauthtoken " + auth.token, |
34 | }, |
35 | body: formData, |
36 | }); |
37 | if (!response.ok) { |
38 | const text = await response.text(); |
39 | throw new Error(`${response.status} ${text}`); |
40 | } |
41 | return await response.json(); |
42 | } |
43 |
|