1 | |
2 | type Netlify = { |
3 | token: string; |
4 | }; |
5 | |
6 | * Create dns record |
7 | * |
8 | */ |
9 | export async function main( |
10 | auth: Netlify, |
11 | zone_id: string, |
12 | body: { |
13 | type?: string; |
14 | hostname?: string; |
15 | value?: string; |
16 | ttl?: number; |
17 | priority?: number; |
18 | weight?: number; |
19 | port?: number; |
20 | flag?: number; |
21 | tag?: string; |
22 | }, |
23 | ) { |
24 | const url = new URL( |
25 | `https://api.netlify.com/api/v1/dns_zones/${zone_id}/dns_records`, |
26 | ); |
27 |
|
28 | const response = await fetch(url, { |
29 | method: "POST", |
30 | headers: { |
31 | "Content-Type": "application/json", |
32 | Authorization: "Bearer " + auth.token, |
33 | }, |
34 | body: JSON.stringify(body), |
35 | }); |
36 | if (!response.ok) { |
37 | const text = await response.text(); |
38 | throw new Error(`${response.status} ${text}`); |
39 | } |
40 | return await response.json(); |
41 | } |
42 |
|