hostinger-api-mcp 0.1.36 → 0.1.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/build-release.yaml +1 -0
- package/README.md +179 -740
- package/build.js +7 -2
- package/package.json +11 -5
- package/src/core/runtime.js +2106 -0
- package/src/core/runtime.ts +2137 -0
- package/{server.ts → src/core/tools/all.js} +238 -2267
- package/{server.js → src/core/tools/all.ts} +248 -2236
- package/src/core/tools/billing.js +163 -0
- package/src/core/tools/billing.ts +174 -0
- package/src/core/tools/dns.js +343 -0
- package/src/core/tools/dns.ts +354 -0
- package/src/core/tools/domains.js +533 -0
- package/src/core/tools/domains.ts +544 -0
- package/src/core/tools/hosting.js +448 -0
- package/src/core/tools/hosting.ts +459 -0
- package/src/core/tools/reach.js +349 -0
- package/src/core/tools/reach.ts +360 -0
- package/src/core/tools/vps.js +1816 -0
- package/src/core/tools/vps.ts +1827 -0
- package/src/servers/all.js +6 -0
- package/src/servers/all.ts +6 -0
- package/src/servers/billing.js +6 -0
- package/src/servers/billing.ts +6 -0
- package/src/servers/dns.js +6 -0
- package/src/servers/dns.ts +6 -0
- package/src/servers/domains.js +6 -0
- package/src/servers/domains.ts +6 -0
- package/src/servers/hosting.js +6 -0
- package/src/servers/hosting.ts +6 -0
- package/src/servers/reach.js +6 -0
- package/src/servers/reach.ts +6 -0
- package/src/servers/vps.js +6 -0
- package/src/servers/vps.ts +6 -0
- package/tsconfig.json +3 -2
|
@@ -0,0 +1,533 @@
|
|
|
1
|
+
// Auto-generated tool list for group: domains
|
|
2
|
+
export default [
|
|
3
|
+
{
|
|
4
|
+
"name": "v2_getDomainVerificationsDIRECT",
|
|
5
|
+
"description": "Retrieve a list of pending and completed domain verifications.",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"path": "/api/v2/direct/verifications/active",
|
|
8
|
+
"inputSchema": {
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {},
|
|
11
|
+
"required": []
|
|
12
|
+
},
|
|
13
|
+
"security": [
|
|
14
|
+
{
|
|
15
|
+
"apiToken": []
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
"group": "domains"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "domains_checkDomainAvailabilityV1",
|
|
22
|
+
"description": "Check availability of domain names across multiple TLDs.\n\nMultiple TLDs can be checked at once.\nIf you want alternative domains with response, provide only one TLD and set `with_alternatives` to `true`.\nTLDs should be provided without leading dot (e.g. `com`, `net`, `org`).\n\nEndpoint has rate limit of 10 requests per minute.\n\nUse this endpoint to verify domain availability before purchase.",
|
|
23
|
+
"method": "POST",
|
|
24
|
+
"path": "/api/domains/v1/availability",
|
|
25
|
+
"inputSchema": {
|
|
26
|
+
"type": "object",
|
|
27
|
+
"properties": {
|
|
28
|
+
"domain": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"description": "Domain name (without TLD)"
|
|
31
|
+
},
|
|
32
|
+
"tlds": {
|
|
33
|
+
"type": "array",
|
|
34
|
+
"description": "TLDs list",
|
|
35
|
+
"items": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"description": "TLD without leading dot"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"with_alternatives": {
|
|
41
|
+
"type": "boolean",
|
|
42
|
+
"description": "Should response include alternatives"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"required": [
|
|
46
|
+
"domain",
|
|
47
|
+
"tlds"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"security": [
|
|
51
|
+
{
|
|
52
|
+
"apiToken": []
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"group": "domains"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "domains_getDomainForwardingV1",
|
|
59
|
+
"description": "Retrieve domain forwarding data.\n\nUse this endpoint to view current redirect configuration for domains.",
|
|
60
|
+
"method": "GET",
|
|
61
|
+
"path": "/api/domains/v1/forwarding/{domain}",
|
|
62
|
+
"inputSchema": {
|
|
63
|
+
"type": "object",
|
|
64
|
+
"properties": {
|
|
65
|
+
"domain": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"description": "Domain name"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"required": [
|
|
71
|
+
"domain"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
"security": [
|
|
75
|
+
{
|
|
76
|
+
"apiToken": []
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"group": "domains"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "domains_deleteDomainForwardingV1",
|
|
83
|
+
"description": "Delete domain forwarding data.\n\nUse this endpoint to remove redirect configuration from domains.",
|
|
84
|
+
"method": "DELETE",
|
|
85
|
+
"path": "/api/domains/v1/forwarding/{domain}",
|
|
86
|
+
"inputSchema": {
|
|
87
|
+
"type": "object",
|
|
88
|
+
"properties": {
|
|
89
|
+
"domain": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"description": "Domain name"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"required": [
|
|
95
|
+
"domain"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
"security": [
|
|
99
|
+
{
|
|
100
|
+
"apiToken": []
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"group": "domains"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "domains_createDomainForwardingV1",
|
|
107
|
+
"description": "Create domain forwarding configuration.\n\nUse this endpoint to set up domain redirects to other URLs.",
|
|
108
|
+
"method": "POST",
|
|
109
|
+
"path": "/api/domains/v1/forwarding",
|
|
110
|
+
"inputSchema": {
|
|
111
|
+
"type": "object",
|
|
112
|
+
"properties": {
|
|
113
|
+
"domain": {
|
|
114
|
+
"type": "string",
|
|
115
|
+
"description": "Domain name"
|
|
116
|
+
},
|
|
117
|
+
"redirect_type": {
|
|
118
|
+
"type": "string",
|
|
119
|
+
"description": "Redirect type",
|
|
120
|
+
"enum": [
|
|
121
|
+
"301",
|
|
122
|
+
"302"
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
"redirect_url": {
|
|
126
|
+
"type": "string",
|
|
127
|
+
"description": "URL to forward domain to"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"required": [
|
|
131
|
+
"domain",
|
|
132
|
+
"redirect_type",
|
|
133
|
+
"redirect_url"
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
"security": [
|
|
137
|
+
{
|
|
138
|
+
"apiToken": []
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"group": "domains"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "domains_enableDomainLockV1",
|
|
145
|
+
"description": "Enable domain lock for the domain.\n\nWhen domain lock is enabled,\nthe domain cannot be transferred to another registrar without first disabling the lock.\n\nUse this endpoint to secure domains against unauthorized transfers.",
|
|
146
|
+
"method": "PUT",
|
|
147
|
+
"path": "/api/domains/v1/portfolio/{domain}/domain-lock",
|
|
148
|
+
"inputSchema": {
|
|
149
|
+
"type": "object",
|
|
150
|
+
"properties": {
|
|
151
|
+
"domain": {
|
|
152
|
+
"type": "string",
|
|
153
|
+
"description": "Domain name"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"required": [
|
|
157
|
+
"domain"
|
|
158
|
+
]
|
|
159
|
+
},
|
|
160
|
+
"security": [
|
|
161
|
+
{
|
|
162
|
+
"apiToken": []
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"group": "domains"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "domains_disableDomainLockV1",
|
|
169
|
+
"description": "Disable domain lock for the domain.\n\nDomain lock needs to be disabled before transferring the domain to another registrar.\n\nUse this endpoint to prepare domains for transfer to other registrars.",
|
|
170
|
+
"method": "DELETE",
|
|
171
|
+
"path": "/api/domains/v1/portfolio/{domain}/domain-lock",
|
|
172
|
+
"inputSchema": {
|
|
173
|
+
"type": "object",
|
|
174
|
+
"properties": {
|
|
175
|
+
"domain": {
|
|
176
|
+
"type": "string",
|
|
177
|
+
"description": "Domain name"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"required": [
|
|
181
|
+
"domain"
|
|
182
|
+
]
|
|
183
|
+
},
|
|
184
|
+
"security": [
|
|
185
|
+
{
|
|
186
|
+
"apiToken": []
|
|
187
|
+
}
|
|
188
|
+
],
|
|
189
|
+
"group": "domains"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "domains_getDomainDetailsV1",
|
|
193
|
+
"description": "Retrieve detailed information for specified domain.\n\nUse this endpoint to view comprehensive domain configuration and status.",
|
|
194
|
+
"method": "GET",
|
|
195
|
+
"path": "/api/domains/v1/portfolio/{domain}",
|
|
196
|
+
"inputSchema": {
|
|
197
|
+
"type": "object",
|
|
198
|
+
"properties": {
|
|
199
|
+
"domain": {
|
|
200
|
+
"type": "string",
|
|
201
|
+
"description": "Domain name"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"required": [
|
|
205
|
+
"domain"
|
|
206
|
+
]
|
|
207
|
+
},
|
|
208
|
+
"security": [
|
|
209
|
+
{
|
|
210
|
+
"apiToken": []
|
|
211
|
+
}
|
|
212
|
+
],
|
|
213
|
+
"group": "domains"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "domains_getDomainListV1",
|
|
217
|
+
"description": "Retrieve all domains associated with your account.\n\nUse this endpoint to view user's domain portfolio.",
|
|
218
|
+
"method": "GET",
|
|
219
|
+
"path": "/api/domains/v1/portfolio",
|
|
220
|
+
"inputSchema": {
|
|
221
|
+
"type": "object",
|
|
222
|
+
"properties": {},
|
|
223
|
+
"required": []
|
|
224
|
+
},
|
|
225
|
+
"security": [
|
|
226
|
+
{
|
|
227
|
+
"apiToken": []
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"group": "domains"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"name": "domains_purchaseNewDomainV1",
|
|
234
|
+
"description": "Purchase and register a new domain name.\n\nIf registration fails, login to [hPanel](https://hpanel.hostinger.com/) and check domain registration status.\n\nIf no payment method is provided, your default payment method will be used automatically.\n\nIf no WHOIS information is provided, default contact information for that TLD will be used.\nBefore making request, ensure WHOIS information for desired TLD exists in your account.\n\nSome TLDs require `additional_details` to be provided and these will be validated before completing purchase.\n\nUse this endpoint to register new domains for users.",
|
|
235
|
+
"method": "POST",
|
|
236
|
+
"path": "/api/domains/v1/portfolio",
|
|
237
|
+
"inputSchema": {
|
|
238
|
+
"type": "object",
|
|
239
|
+
"properties": {
|
|
240
|
+
"domain": {
|
|
241
|
+
"type": "string",
|
|
242
|
+
"description": "Domain name"
|
|
243
|
+
},
|
|
244
|
+
"item_id": {
|
|
245
|
+
"type": "string",
|
|
246
|
+
"description": "Catalog price item ID"
|
|
247
|
+
},
|
|
248
|
+
"payment_method_id": {
|
|
249
|
+
"type": "integer",
|
|
250
|
+
"description": "Payment method ID, default will be used if not provided"
|
|
251
|
+
},
|
|
252
|
+
"domain_contacts": {
|
|
253
|
+
"type": "object",
|
|
254
|
+
"description": "Domain contact information",
|
|
255
|
+
"properties": {
|
|
256
|
+
"owner_id": {
|
|
257
|
+
"type": "integer",
|
|
258
|
+
"description": "Owner contact WHOIS record ID"
|
|
259
|
+
},
|
|
260
|
+
"admin_id": {
|
|
261
|
+
"type": "integer",
|
|
262
|
+
"description": "Administrative contact WHOIS record ID"
|
|
263
|
+
},
|
|
264
|
+
"billing_id": {
|
|
265
|
+
"type": "integer",
|
|
266
|
+
"description": "Billing contact WHOIS record ID"
|
|
267
|
+
},
|
|
268
|
+
"tech_id": {
|
|
269
|
+
"type": "integer",
|
|
270
|
+
"description": "Technical contact WHOIS record ID"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"additional_details": {
|
|
275
|
+
"type": "object",
|
|
276
|
+
"description": "Additional registration data, possible values depends on TLD",
|
|
277
|
+
"properties": {}
|
|
278
|
+
},
|
|
279
|
+
"coupons": {
|
|
280
|
+
"type": "array",
|
|
281
|
+
"description": "Discount coupon codes",
|
|
282
|
+
"items": {
|
|
283
|
+
"type": "string",
|
|
284
|
+
"description": "coupons parameter"
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"required": [
|
|
289
|
+
"domain",
|
|
290
|
+
"item_id"
|
|
291
|
+
]
|
|
292
|
+
},
|
|
293
|
+
"security": [
|
|
294
|
+
{
|
|
295
|
+
"apiToken": []
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
"group": "domains"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"name": "domains_enablePrivacyProtectionV1",
|
|
302
|
+
"description": "Enable privacy protection for the domain.\n\nWhen privacy protection is enabled, domain owner's personal information is hidden from public WHOIS database.\n\nUse this endpoint to protect domain owner's personal information from public view.",
|
|
303
|
+
"method": "PUT",
|
|
304
|
+
"path": "/api/domains/v1/portfolio/{domain}/privacy-protection",
|
|
305
|
+
"inputSchema": {
|
|
306
|
+
"type": "object",
|
|
307
|
+
"properties": {
|
|
308
|
+
"domain": {
|
|
309
|
+
"type": "string",
|
|
310
|
+
"description": "Domain name"
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"required": [
|
|
314
|
+
"domain"
|
|
315
|
+
]
|
|
316
|
+
},
|
|
317
|
+
"security": [
|
|
318
|
+
{
|
|
319
|
+
"apiToken": []
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"group": "domains"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"name": "domains_disablePrivacyProtectionV1",
|
|
326
|
+
"description": "Disable privacy protection for the domain.\n\nWhen privacy protection is disabled, domain owner's personal information is visible in public WHOIS database.\n\nUse this endpoint to make domain owner's information publicly visible.",
|
|
327
|
+
"method": "DELETE",
|
|
328
|
+
"path": "/api/domains/v1/portfolio/{domain}/privacy-protection",
|
|
329
|
+
"inputSchema": {
|
|
330
|
+
"type": "object",
|
|
331
|
+
"properties": {
|
|
332
|
+
"domain": {
|
|
333
|
+
"type": "string",
|
|
334
|
+
"description": "Domain name"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"required": [
|
|
338
|
+
"domain"
|
|
339
|
+
]
|
|
340
|
+
},
|
|
341
|
+
"security": [
|
|
342
|
+
{
|
|
343
|
+
"apiToken": []
|
|
344
|
+
}
|
|
345
|
+
],
|
|
346
|
+
"group": "domains"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"name": "domains_updateDomainNameserversV1",
|
|
350
|
+
"description": "Set nameservers for a specified domain.\n\nBe aware, that improper nameserver configuration can lead to the domain being unresolvable or unavailable.\n\nUse this endpoint to configure custom DNS hosting for domains.",
|
|
351
|
+
"method": "PUT",
|
|
352
|
+
"path": "/api/domains/v1/portfolio/{domain}/nameservers",
|
|
353
|
+
"inputSchema": {
|
|
354
|
+
"type": "object",
|
|
355
|
+
"properties": {
|
|
356
|
+
"domain": {
|
|
357
|
+
"type": "string",
|
|
358
|
+
"description": "Domain name"
|
|
359
|
+
},
|
|
360
|
+
"ns1": {
|
|
361
|
+
"type": "string",
|
|
362
|
+
"description": "First name server"
|
|
363
|
+
},
|
|
364
|
+
"ns2": {
|
|
365
|
+
"type": "string",
|
|
366
|
+
"description": "Second name server"
|
|
367
|
+
},
|
|
368
|
+
"ns3": {
|
|
369
|
+
"type": "string",
|
|
370
|
+
"description": "Third name server"
|
|
371
|
+
},
|
|
372
|
+
"ns4": {
|
|
373
|
+
"type": "string",
|
|
374
|
+
"description": "Fourth name server"
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"required": [
|
|
378
|
+
"domain",
|
|
379
|
+
"ns1",
|
|
380
|
+
"ns2"
|
|
381
|
+
]
|
|
382
|
+
},
|
|
383
|
+
"security": [
|
|
384
|
+
{
|
|
385
|
+
"apiToken": []
|
|
386
|
+
}
|
|
387
|
+
],
|
|
388
|
+
"group": "domains"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"name": "domains_getWHOISProfileV1",
|
|
392
|
+
"description": "Retrieve a WHOIS contact profile.\n\nUse this endpoint to view domain registration contact information.",
|
|
393
|
+
"method": "GET",
|
|
394
|
+
"path": "/api/domains/v1/whois/{whoisId}",
|
|
395
|
+
"inputSchema": {
|
|
396
|
+
"type": "object",
|
|
397
|
+
"properties": {
|
|
398
|
+
"whoisId": {
|
|
399
|
+
"type": "integer",
|
|
400
|
+
"description": "WHOIS ID"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
"required": [
|
|
404
|
+
"whoisId"
|
|
405
|
+
]
|
|
406
|
+
},
|
|
407
|
+
"security": [
|
|
408
|
+
{
|
|
409
|
+
"apiToken": []
|
|
410
|
+
}
|
|
411
|
+
],
|
|
412
|
+
"group": "domains"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"name": "domains_deleteWHOISProfileV1",
|
|
416
|
+
"description": "Delete WHOIS contact profile.\n\nUse this endpoint to remove unused contact profiles from account.",
|
|
417
|
+
"method": "DELETE",
|
|
418
|
+
"path": "/api/domains/v1/whois/{whoisId}",
|
|
419
|
+
"inputSchema": {
|
|
420
|
+
"type": "object",
|
|
421
|
+
"properties": {
|
|
422
|
+
"whoisId": {
|
|
423
|
+
"type": "integer",
|
|
424
|
+
"description": "WHOIS ID"
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
"required": [
|
|
428
|
+
"whoisId"
|
|
429
|
+
]
|
|
430
|
+
},
|
|
431
|
+
"security": [
|
|
432
|
+
{
|
|
433
|
+
"apiToken": []
|
|
434
|
+
}
|
|
435
|
+
],
|
|
436
|
+
"group": "domains"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"name": "domains_getWHOISProfileListV1",
|
|
440
|
+
"description": "Retrieve WHOIS contact profiles.\n\nUse this endpoint to view available contact profiles for domain registration.",
|
|
441
|
+
"method": "GET",
|
|
442
|
+
"path": "/api/domains/v1/whois",
|
|
443
|
+
"inputSchema": {
|
|
444
|
+
"type": "object",
|
|
445
|
+
"properties": {
|
|
446
|
+
"tld": {
|
|
447
|
+
"type": "string",
|
|
448
|
+
"description": "Filter by TLD (without leading dot)"
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
"required": []
|
|
452
|
+
},
|
|
453
|
+
"security": [
|
|
454
|
+
{
|
|
455
|
+
"apiToken": []
|
|
456
|
+
}
|
|
457
|
+
],
|
|
458
|
+
"group": "domains"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"name": "domains_createWHOISProfileV1",
|
|
462
|
+
"description": "Create WHOIS contact profile.\n\nUse this endpoint to add new contact information for domain registration.",
|
|
463
|
+
"method": "POST",
|
|
464
|
+
"path": "/api/domains/v1/whois",
|
|
465
|
+
"inputSchema": {
|
|
466
|
+
"type": "object",
|
|
467
|
+
"properties": {
|
|
468
|
+
"tld": {
|
|
469
|
+
"type": "string",
|
|
470
|
+
"description": "TLD of the domain (without leading dot)"
|
|
471
|
+
},
|
|
472
|
+
"country": {
|
|
473
|
+
"type": "string",
|
|
474
|
+
"description": "ISO 3166 2-letter country code"
|
|
475
|
+
},
|
|
476
|
+
"entity_type": {
|
|
477
|
+
"type": "string",
|
|
478
|
+
"description": "Legal entity type",
|
|
479
|
+
"enum": [
|
|
480
|
+
"individual",
|
|
481
|
+
"organization"
|
|
482
|
+
]
|
|
483
|
+
},
|
|
484
|
+
"tld_details": {
|
|
485
|
+
"type": "object",
|
|
486
|
+
"description": "TLD details",
|
|
487
|
+
"properties": {}
|
|
488
|
+
},
|
|
489
|
+
"whois_details": {
|
|
490
|
+
"type": "object",
|
|
491
|
+
"description": "WHOIS details",
|
|
492
|
+
"properties": {}
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
"required": [
|
|
496
|
+
"tld",
|
|
497
|
+
"entity_type",
|
|
498
|
+
"country",
|
|
499
|
+
"whois_details"
|
|
500
|
+
]
|
|
501
|
+
},
|
|
502
|
+
"security": [
|
|
503
|
+
{
|
|
504
|
+
"apiToken": []
|
|
505
|
+
}
|
|
506
|
+
],
|
|
507
|
+
"group": "domains"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"name": "domains_getWHOISProfileUsageV1",
|
|
511
|
+
"description": "Retrieve domain list where provided WHOIS contact profile is used.\n\nUse this endpoint to view which domains use specific contact profiles.",
|
|
512
|
+
"method": "GET",
|
|
513
|
+
"path": "/api/domains/v1/whois/{whoisId}/usage",
|
|
514
|
+
"inputSchema": {
|
|
515
|
+
"type": "object",
|
|
516
|
+
"properties": {
|
|
517
|
+
"whoisId": {
|
|
518
|
+
"type": "integer",
|
|
519
|
+
"description": "WHOIS ID"
|
|
520
|
+
}
|
|
521
|
+
},
|
|
522
|
+
"required": [
|
|
523
|
+
"whoisId"
|
|
524
|
+
]
|
|
525
|
+
},
|
|
526
|
+
"security": [
|
|
527
|
+
{
|
|
528
|
+
"apiToken": []
|
|
529
|
+
}
|
|
530
|
+
],
|
|
531
|
+
"group": "domains"
|
|
532
|
+
}
|
|
533
|
+
];
|