1 | |
2 | |
3 | * Profiles |
4 | * Edit Profie |
5 | **Token scopes**: `profile:write`, `profile:read` |
6 | */ |
7 | export async function main(auth: RT.Deel, body: Body) { |
8 | const url = new URL(`https://api.letsdeel.com/rest/v2/profiles`) |
9 |
|
10 | const response = await fetch(url, { |
11 | method: 'PATCH', |
12 | headers: { |
13 | 'Content-Type': 'application/json', |
14 | Authorization: 'Bearer ' + auth.apiKey |
15 | }, |
16 | body: JSON.stringify(body) |
17 | }) |
18 | if (!response.ok) { |
19 | const text = await response.text() |
20 | throw new Error(`${response.status} ${text}`) |
21 | } |
22 | return await response.json() |
23 | } |
24 |
|
25 | |
26 | |
27 | * This file was automatically generated by json-schema-to-typescript. |
28 | * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, |
29 | * and run json-schema-to-typescript to regenerate this file. |
30 | */ |
31 |
|
32 | export interface Body { |
33 | data: { |
34 | |
35 | * The contact number for the profile. |
36 | */ |
37 | phone?: string |
38 | |
39 | * The preferred currency for the profile. |
40 | */ |
41 | currency?: string |
42 | |
43 | * The timezone of the profile. |
44 | */ |
45 | timezone?: string |
46 | |
47 | * The last name of the profile. |
48 | */ |
49 | last_name?: string |
50 | |
51 | * The first name of the profile. |
52 | */ |
53 | first_name?: string |
54 | |
55 | * The preferred name of the profile. |
56 | */ |
57 | preferred_name?: string |
58 | [k: string]: unknown |
59 | } |
60 | [k: string]: unknown |
61 | } |
62 |
|