@opusdns/api 0.68.0 → 0.69.0
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/package.json +1 -1
- package/src/helpers/requests.d.ts +91 -66
- package/src/helpers/responses.d.ts +94 -75
- package/src/openapi.yaml +101 -77
- package/src/schema.d.ts +166 -81
|
@@ -39,7 +39,7 @@ import { Pagination_OrganizationCredential, Problem, HTTPValidationError, Organi
|
|
|
39
39
|
/**
|
|
40
40
|
* Response types for GET AuthClientCredentials endpoint
|
|
41
41
|
*
|
|
42
|
-
* List
|
|
42
|
+
* List all API keys
|
|
43
43
|
*
|
|
44
44
|
* @remarks
|
|
45
45
|
* This type defines all possible response structures for the GET AuthClientCredentials endpoint.
|
|
@@ -116,7 +116,7 @@ export type GET_AuthClientCredentials_Response_422 = HTTPValidationError
|
|
|
116
116
|
/**
|
|
117
117
|
* Response types for POST AuthClientCredentials endpoint
|
|
118
118
|
*
|
|
119
|
-
* Issue
|
|
119
|
+
* Issue an API key
|
|
120
120
|
*
|
|
121
121
|
* @remarks
|
|
122
122
|
* This type defines all possible response structures for the POST AuthClientCredentials endpoint.
|
|
@@ -189,7 +189,7 @@ export type POST_AuthClientCredentials_Response_422 = HTTPValidationError
|
|
|
189
189
|
/**
|
|
190
190
|
* Response types for DELETE AuthClientCredentialsByApiKeyId endpoint
|
|
191
191
|
*
|
|
192
|
-
* Delete
|
|
192
|
+
* Delete an API key
|
|
193
193
|
*
|
|
194
194
|
* @remarks
|
|
195
195
|
* This type defines all possible response structures for the DELETE AuthClientCredentialsByApiKeyId endpoint.
|
|
@@ -427,7 +427,7 @@ export type POST_AuthToken_Response_422 = HTTPValidationError
|
|
|
427
427
|
/**
|
|
428
428
|
* Response types for GET Availability endpoint
|
|
429
429
|
*
|
|
430
|
-
*
|
|
430
|
+
* Check domain availability
|
|
431
431
|
* Check the availability of one or more domains.
|
|
432
432
|
*
|
|
433
433
|
* @remarks
|
|
@@ -534,7 +534,7 @@ export type GET_Availability_Response_502 = Problem
|
|
|
534
534
|
/**
|
|
535
535
|
* Response types for GET AvailabilityStream endpoint
|
|
536
536
|
*
|
|
537
|
-
* Stream
|
|
537
|
+
* Stream domain availability results
|
|
538
538
|
* Stream domain availability results using Server-Sent Events (SSE) until the `done` event is received.
|
|
539
539
|
*
|
|
540
540
|
* @remarks
|
|
@@ -620,8 +620,8 @@ export type GET_AvailabilityStream_Response_502 = Problem
|
|
|
620
620
|
/**
|
|
621
621
|
* Response types for GET Contacts endpoint
|
|
622
622
|
*
|
|
623
|
-
* Get Contacts
|
|
624
623
|
* List all contacts
|
|
624
|
+
* Retrieves a paginated list of all contacts
|
|
625
625
|
*
|
|
626
626
|
* @remarks
|
|
627
627
|
* This type defines all possible response structures for the GET Contacts endpoint.
|
|
@@ -676,8 +676,8 @@ export type GET_Contacts_Response_422 = HTTPValidationError
|
|
|
676
676
|
/**
|
|
677
677
|
* Response types for POST Contacts endpoint
|
|
678
678
|
*
|
|
679
|
-
* Create Contact
|
|
680
679
|
* Create a contact
|
|
680
|
+
* Create a new contact object to use for domain registration
|
|
681
681
|
*
|
|
682
682
|
* @remarks
|
|
683
683
|
* This type defines all possible response structures for the POST Contacts endpoint.
|
|
@@ -732,8 +732,8 @@ export type POST_Contacts_Response_422 = HTTPValidationError
|
|
|
732
732
|
/**
|
|
733
733
|
* Response types for DELETE ContactsByContactId endpoint
|
|
734
734
|
*
|
|
735
|
-
* Delete Contact
|
|
736
735
|
* Delete a contact
|
|
736
|
+
* Deletes a contact object; only possible if the contact is not in use
|
|
737
737
|
*
|
|
738
738
|
* @remarks
|
|
739
739
|
* This type defines all possible response structures for the DELETE ContactsByContactId endpoint.
|
|
@@ -806,8 +806,8 @@ export type DELETE_ContactsByContactId_Response_422 = HTTPValidationError
|
|
|
806
806
|
/**
|
|
807
807
|
* Response types for GET ContactsByContactId endpoint
|
|
808
808
|
*
|
|
809
|
-
* Get Contact
|
|
810
809
|
* Retrieve a contact
|
|
810
|
+
* Retrieves a contact object
|
|
811
811
|
*
|
|
812
812
|
* @remarks
|
|
813
813
|
* This type defines all possible response structures for the GET ContactsByContactId endpoint.
|
|
@@ -880,7 +880,6 @@ export type GET_ContactsByContactId_Response_422 = HTTPValidationError
|
|
|
880
880
|
/**
|
|
881
881
|
* Response types for DELETE ContactsByContactIdVerification endpoint
|
|
882
882
|
*
|
|
883
|
-
* Cancel Verification
|
|
884
883
|
* Delete contact verification
|
|
885
884
|
*
|
|
886
885
|
* @remarks
|
|
@@ -954,8 +953,7 @@ export type DELETE_ContactsByContactIdVerification_Response_422 = HTTPValidation
|
|
|
954
953
|
/**
|
|
955
954
|
* Response types for GET ContactsByContactIdVerification endpoint
|
|
956
955
|
*
|
|
957
|
-
*
|
|
958
|
-
* Retrieve contact verification
|
|
956
|
+
* Retrieve contact verification by contact ID
|
|
959
957
|
*
|
|
960
958
|
* @remarks
|
|
961
959
|
* This type defines all possible response structures for the GET ContactsByContactIdVerification endpoint.
|
|
@@ -1046,7 +1044,6 @@ export type GET_ContactsByContactIdVerification_Response_422 = HTTPValidationErr
|
|
|
1046
1044
|
/**
|
|
1047
1045
|
* Response types for POST ContactsByContactIdVerification endpoint
|
|
1048
1046
|
*
|
|
1049
|
-
* Start Contact Verification
|
|
1050
1047
|
* Start contact verification
|
|
1051
1048
|
*
|
|
1052
1049
|
* @remarks
|
|
@@ -1138,8 +1135,7 @@ export type POST_ContactsByContactIdVerification_Response_422 = HTTPValidationEr
|
|
|
1138
1135
|
/**
|
|
1139
1136
|
* Response types for PUT ContactsByContactIdVerification endpoint
|
|
1140
1137
|
*
|
|
1141
|
-
*
|
|
1142
|
-
* Complete contact verification
|
|
1138
|
+
* Complete contact verification by contact ID
|
|
1143
1139
|
*
|
|
1144
1140
|
* @remarks
|
|
1145
1141
|
* This type defines all possible response structures for the PUT ContactsByContactIdVerification endpoint.
|
|
@@ -1248,8 +1244,7 @@ export type PUT_ContactsByContactIdVerification_Response_422 = HTTPValidationErr
|
|
|
1248
1244
|
/**
|
|
1249
1245
|
* Response types for GET ContactsVerification endpoint
|
|
1250
1246
|
*
|
|
1251
|
-
*
|
|
1252
|
-
* Retrieve contact verification
|
|
1247
|
+
* Retrieve contact verification by token
|
|
1253
1248
|
*
|
|
1254
1249
|
* @remarks
|
|
1255
1250
|
* This type defines all possible response structures for the GET ContactsVerification endpoint.
|
|
@@ -1340,8 +1335,7 @@ export type GET_ContactsVerification_Response_422 = HTTPValidationError
|
|
|
1340
1335
|
/**
|
|
1341
1336
|
* Response types for PUT ContactsVerification endpoint
|
|
1342
1337
|
*
|
|
1343
|
-
*
|
|
1344
|
-
* Complete contact verification
|
|
1338
|
+
* Complete contact verification with token
|
|
1345
1339
|
*
|
|
1346
1340
|
* @remarks
|
|
1347
1341
|
* This type defines all possible response structures for the PUT ContactsVerification endpoint.
|
|
@@ -2003,7 +1997,8 @@ export type GET_DnsSummary_Response_200 = DnsZoneSummary
|
|
|
2003
1997
|
/**
|
|
2004
1998
|
* Response types for GET DomainSearchSuggest endpoint
|
|
2005
1999
|
*
|
|
2006
|
-
* Suggest
|
|
2000
|
+
* Suggest domains
|
|
2001
|
+
* Get a list of domain suggestions based on a search query
|
|
2007
2002
|
*
|
|
2008
2003
|
* @remarks
|
|
2009
2004
|
* This type defines all possible response structures for the GET DomainSearchSuggest endpoint.
|
|
@@ -2014,9 +2009,7 @@ export type GET_DnsSummary_Response_200 = DnsZoneSummary
|
|
|
2014
2009
|
*
|
|
2015
2010
|
* @path /v1/domain-search/suggest
|
|
2016
2011
|
* @param query (query) - The primary keyword or phrase for the domain search
|
|
2017
|
-
* @param tlds (query) -
|
|
2018
|
-
Specify one or more TLDs to include in the search.
|
|
2019
|
-
|
|
2012
|
+
* @param tlds (query) - The TLDs to include in the search
|
|
2020
2013
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2021
2014
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2022
2015
|
*
|
|
@@ -2041,9 +2034,7 @@ export type GET_DomainSearchSuggest_Response = GET_DomainSearchSuggest_Response_
|
|
|
2041
2034
|
*
|
|
2042
2035
|
* @path /v1/domain-search/suggest
|
|
2043
2036
|
* @param query (query) - The primary keyword or phrase for the domain search
|
|
2044
|
-
* @param tlds (query) -
|
|
2045
|
-
Specify one or more TLDs to include in the search.
|
|
2046
|
-
|
|
2037
|
+
* @param tlds (query) - The TLDs to include in the search
|
|
2047
2038
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2048
2039
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2049
2040
|
*
|
|
@@ -2064,9 +2055,7 @@ export type GET_DomainSearchSuggest_Response_200 = DomainSearch
|
|
|
2064
2055
|
*
|
|
2065
2056
|
* @path /v1/domain-search/suggest
|
|
2066
2057
|
* @param query (query) - The primary keyword or phrase for the domain search
|
|
2067
|
-
* @param tlds (query) -
|
|
2068
|
-
Specify one or more TLDs to include in the search.
|
|
2069
|
-
|
|
2058
|
+
* @param tlds (query) - The TLDs to include in the search
|
|
2070
2059
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2071
2060
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2072
2061
|
*
|
|
@@ -2087,9 +2076,7 @@ export type GET_DomainSearchSuggest_Response_401 = Problem
|
|
|
2087
2076
|
*
|
|
2088
2077
|
* @path /v1/domain-search/suggest
|
|
2089
2078
|
* @param query (query) - The primary keyword or phrase for the domain search
|
|
2090
|
-
* @param tlds (query) -
|
|
2091
|
-
Specify one or more TLDs to include in the search.
|
|
2092
|
-
|
|
2079
|
+
* @param tlds (query) - The TLDs to include in the search
|
|
2093
2080
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2094
2081
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2095
2082
|
*
|
|
@@ -2110,9 +2097,7 @@ export type GET_DomainSearchSuggest_Response_422 = HTTPValidationError
|
|
|
2110
2097
|
*
|
|
2111
2098
|
* @path /v1/domain-search/suggest
|
|
2112
2099
|
* @param query (query) - The primary keyword or phrase for the domain search
|
|
2113
|
-
* @param tlds (query) -
|
|
2114
|
-
Specify one or more TLDs to include in the search.
|
|
2115
|
-
|
|
2100
|
+
* @param tlds (query) - The TLDs to include in the search
|
|
2116
2101
|
* @param limit (query) - The maximum number of domain suggestions to return
|
|
2117
2102
|
* @param premium (query) - Whether to include premium domains in the suggestions
|
|
2118
2103
|
*
|
|
@@ -2904,7 +2889,7 @@ export type POST_DomainsByDomainReferenceRenew_Response_422 = HTTPValidationErro
|
|
|
2904
2889
|
/**
|
|
2905
2890
|
* Response types for POST DomainsByDomainReferenceRestore endpoint
|
|
2906
2891
|
*
|
|
2907
|
-
* Restore
|
|
2892
|
+
* Restore an eligible domain (during redemption period)
|
|
2908
2893
|
*
|
|
2909
2894
|
* @remarks
|
|
2910
2895
|
* This type defines all possible response structures for the POST DomainsByDomainReferenceRestore endpoint.
|
|
@@ -3597,7 +3582,8 @@ export type PATCH_EmailForwardsByZoneNameEnable_Response_422 = HTTPValidationErr
|
|
|
3597
3582
|
/**
|
|
3598
3583
|
* Response types for GET Events endpoint
|
|
3599
3584
|
*
|
|
3600
|
-
* Get
|
|
3585
|
+
* Get pending events
|
|
3586
|
+
* Retrieves a paginated list of pending events for the organization
|
|
3601
3587
|
*
|
|
3602
3588
|
* @remarks
|
|
3603
3589
|
* This type defines all possible response structures for the GET Events endpoint.
|
|
@@ -3670,7 +3656,8 @@ export type GET_Events_Response_422 = HTTPValidationError
|
|
|
3670
3656
|
/**
|
|
3671
3657
|
* Response types for GET EventsByEventId endpoint
|
|
3672
3658
|
*
|
|
3673
|
-
* Get
|
|
3659
|
+
* Get event
|
|
3660
|
+
* Get an event by its ID
|
|
3674
3661
|
*
|
|
3675
3662
|
* @remarks
|
|
3676
3663
|
* This type defines all possible response structures for the GET EventsByEventId endpoint.
|
|
@@ -3761,7 +3748,8 @@ export type GET_EventsByEventId_Response_422 = HTTPValidationError
|
|
|
3761
3748
|
/**
|
|
3762
3749
|
* Response types for PATCH EventsByEventId endpoint
|
|
3763
3750
|
*
|
|
3764
|
-
* Acknowledge
|
|
3751
|
+
* Acknowledge event
|
|
3752
|
+
* Acknowledge an event
|
|
3765
3753
|
*
|
|
3766
3754
|
* @remarks
|
|
3767
3755
|
* This type defines all possible response structures for the PATCH EventsByEventId endpoint.
|
|
@@ -3834,7 +3822,8 @@ export type PATCH_EventsByEventId_Response_422 = HTTPValidationError
|
|
|
3834
3822
|
/**
|
|
3835
3823
|
* Response types for GET Organizations endpoint
|
|
3836
3824
|
*
|
|
3837
|
-
* List
|
|
3825
|
+
* List all organizations
|
|
3826
|
+
* Retrieves a paginated list of organizations under the current organization
|
|
3838
3827
|
*
|
|
3839
3828
|
* @remarks
|
|
3840
3829
|
* This type defines all possible response structures for the GET Organizations endpoint.
|
|
@@ -3889,7 +3878,8 @@ export type GET_Organizations_Response_422 = HTTPValidationError
|
|
|
3889
3878
|
/**
|
|
3890
3879
|
* Response types for POST Organizations endpoint
|
|
3891
3880
|
*
|
|
3892
|
-
* Create
|
|
3881
|
+
* Create an organization
|
|
3882
|
+
* Create a new organization under the current organization
|
|
3893
3883
|
*
|
|
3894
3884
|
* @remarks
|
|
3895
3885
|
* This type defines all possible response structures for the POST Organizations endpoint.
|
|
@@ -3944,7 +3934,8 @@ export type POST_Organizations_Response_422 = HTTPValidationError
|
|
|
3944
3934
|
/**
|
|
3945
3935
|
* Response types for GET OrganizationsAttributes endpoint
|
|
3946
3936
|
*
|
|
3947
|
-
*
|
|
3937
|
+
* List organization attributes
|
|
3938
|
+
* Retrieves a list of organization attributes for the current organization
|
|
3948
3939
|
*
|
|
3949
3940
|
* @remarks
|
|
3950
3941
|
* This type defines all possible response structures for the GET OrganizationsAttributes endpoint.
|
|
@@ -4002,7 +3993,8 @@ export type GET_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
|
4002
3993
|
/**
|
|
4003
3994
|
* Response types for PATCH OrganizationsAttributes endpoint
|
|
4004
3995
|
*
|
|
4005
|
-
* Update
|
|
3996
|
+
* Update organization attributes
|
|
3997
|
+
* Updates one or more organization attributes for the current organization
|
|
4006
3998
|
*
|
|
4007
3999
|
* @remarks
|
|
4008
4000
|
* This type defines all possible response structures for the PATCH OrganizationsAttributes endpoint.
|
|
@@ -4057,7 +4049,8 @@ export type PATCH_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
|
4057
4049
|
/**
|
|
4058
4050
|
* Response types for GET OrganizationsAttributesByOrganizationId endpoint
|
|
4059
4051
|
*
|
|
4060
|
-
*
|
|
4052
|
+
* List organization attributes
|
|
4053
|
+
* Retrieves a list of organization attributes for the specified organization
|
|
4061
4054
|
*
|
|
4062
4055
|
* @remarks
|
|
4063
4056
|
* This type defines all possible response structures for the GET OrganizationsAttributesByOrganizationId endpoint.
|
|
@@ -4115,7 +4108,8 @@ export type GET_OrganizationsAttributesByOrganizationId_Response_422 = HTTPValid
|
|
|
4115
4108
|
/**
|
|
4116
4109
|
* Response types for PATCH OrganizationsAttributesByOrganizationId endpoint
|
|
4117
4110
|
*
|
|
4118
|
-
* Update
|
|
4111
|
+
* Update organization attributes
|
|
4112
|
+
* Updates one or more organization attributes for the specified organization
|
|
4119
4113
|
*
|
|
4120
4114
|
* @remarks
|
|
4121
4115
|
* This type defines all possible response structures for the PATCH OrganizationsAttributesByOrganizationId endpoint.
|
|
@@ -4170,7 +4164,8 @@ export type PATCH_OrganizationsAttributesByOrganizationId_Response_422 = HTTPVal
|
|
|
4170
4164
|
/**
|
|
4171
4165
|
* Response types for DELETE OrganizationsByOrganizationId endpoint
|
|
4172
4166
|
*
|
|
4173
|
-
* Delete
|
|
4167
|
+
* Delete an organization
|
|
4168
|
+
* Permanently deletes an organization
|
|
4174
4169
|
*
|
|
4175
4170
|
* @remarks
|
|
4176
4171
|
* This type defines all possible response structures for the DELETE OrganizationsByOrganizationId endpoint.
|
|
@@ -4207,7 +4202,8 @@ export type DELETE_OrganizationsByOrganizationId_Response_422 = HTTPValidationEr
|
|
|
4207
4202
|
/**
|
|
4208
4203
|
* Response types for GET OrganizationsByOrganizationId endpoint
|
|
4209
4204
|
*
|
|
4210
|
-
* Get
|
|
4205
|
+
* Get organization details
|
|
4206
|
+
* Retrieves details for a specific organization
|
|
4211
4207
|
*
|
|
4212
4208
|
* @remarks
|
|
4213
4209
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationId endpoint.
|
|
@@ -4262,7 +4258,8 @@ export type GET_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
|
4262
4258
|
/**
|
|
4263
4259
|
* Response types for PATCH OrganizationsByOrganizationId endpoint
|
|
4264
4260
|
*
|
|
4265
|
-
* Update
|
|
4261
|
+
* Update an organization
|
|
4262
|
+
* Updates details for a specific organization
|
|
4266
4263
|
*
|
|
4267
4264
|
* @remarks
|
|
4268
4265
|
* This type defines all possible response structures for the PATCH OrganizationsByOrganizationId endpoint.
|
|
@@ -4317,7 +4314,8 @@ export type PATCH_OrganizationsByOrganizationId_Response_422 = HTTPValidationErr
|
|
|
4317
4314
|
/**
|
|
4318
4315
|
* Response types for POST OrganizationsByOrganizationIdBillingCheckoutSessions endpoint
|
|
4319
4316
|
*
|
|
4320
|
-
*
|
|
4317
|
+
* Create checkout session
|
|
4318
|
+
* Create a checkout session for the organization
|
|
4321
4319
|
*
|
|
4322
4320
|
* @remarks
|
|
4323
4321
|
* This type defines all possible response structures for the POST OrganizationsByOrganizationIdBillingCheckoutSessions endpoint.
|
|
@@ -4372,7 +4370,8 @@ export type POST_OrganizationsByOrganizationIdBillingCheckoutSessions_Response_4
|
|
|
4372
4370
|
/**
|
|
4373
4371
|
* Response types for GET OrganizationsByOrganizationIdBillingPaymentMethods endpoint
|
|
4374
4372
|
*
|
|
4375
|
-
* List
|
|
4373
|
+
* List all payment methods
|
|
4374
|
+
* List all available payment methods for the organization
|
|
4376
4375
|
*
|
|
4377
4376
|
* @remarks
|
|
4378
4377
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdBillingPaymentMethods endpoint.
|
|
@@ -4427,7 +4426,8 @@ export type GET_OrganizationsByOrganizationIdBillingPaymentMethods_Response_422
|
|
|
4427
4426
|
/**
|
|
4428
4427
|
* Response types for DELETE OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMethodId endpoint
|
|
4429
4428
|
*
|
|
4430
|
-
* Delete
|
|
4429
|
+
* Delete a payment method
|
|
4430
|
+
* Delete a payment method for the organization
|
|
4431
4431
|
*
|
|
4432
4432
|
* @remarks
|
|
4433
4433
|
* This type defines all possible response structures for the DELETE OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMethodId endpoint.
|
|
@@ -4464,7 +4464,8 @@ export type DELETE_OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMe
|
|
|
4464
4464
|
/**
|
|
4465
4465
|
* Response types for PATCH OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMethodIdDefault endpoint
|
|
4466
4466
|
*
|
|
4467
|
-
*
|
|
4467
|
+
* Set payment method as default
|
|
4468
|
+
* Set the provided payment method as default for the specified organization
|
|
4468
4469
|
*
|
|
4469
4470
|
* @remarks
|
|
4470
4471
|
* This type defines all possible response structures for the PATCH OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMethodIdDefault endpoint.
|
|
@@ -4519,7 +4520,8 @@ export type PATCH_OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMet
|
|
|
4519
4520
|
/**
|
|
4520
4521
|
* Response types for POST OrganizationsByOrganizationIdBillingWalletCredits endpoint
|
|
4521
4522
|
*
|
|
4522
|
-
* Credit
|
|
4523
|
+
* Credit wallet
|
|
4524
|
+
* Credit the organization's wallet using the provided amount and payment method
|
|
4523
4525
|
*
|
|
4524
4526
|
* @remarks
|
|
4525
4527
|
* This type defines all possible response structures for the POST OrganizationsByOrganizationIdBillingWalletCredits endpoint.
|
|
@@ -4574,7 +4576,8 @@ export type POST_OrganizationsByOrganizationIdBillingWalletCredits_Response_422
|
|
|
4574
4576
|
/**
|
|
4575
4577
|
* Response types for PATCH OrganizationsByOrganizationIdPlan endpoint
|
|
4576
4578
|
*
|
|
4577
|
-
*
|
|
4579
|
+
* Update organization plan
|
|
4580
|
+
* Changes the plan for an organization
|
|
4578
4581
|
*
|
|
4579
4582
|
* @remarks
|
|
4580
4583
|
* This type defines all possible response structures for the PATCH OrganizationsByOrganizationIdPlan endpoint.
|
|
@@ -4629,7 +4632,8 @@ export type PATCH_OrganizationsByOrganizationIdPlan_Response_422 = HTTPValidatio
|
|
|
4629
4632
|
/**
|
|
4630
4633
|
* Response types for GET OrganizationsByOrganizationIdPlans endpoint
|
|
4631
4634
|
*
|
|
4632
|
-
* Get
|
|
4635
|
+
* Get plans for an organization
|
|
4636
|
+
* Retrieves a list of plans for an organization
|
|
4633
4637
|
*
|
|
4634
4638
|
* @remarks
|
|
4635
4639
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdPlans endpoint.
|
|
@@ -4684,7 +4688,8 @@ export type GET_OrganizationsByOrganizationIdPlans_Response_422 = HTTPValidation
|
|
|
4684
4688
|
/**
|
|
4685
4689
|
* Response types for GET OrganizationsByOrganizationIdPricingProductTypeByProductType endpoint
|
|
4686
4690
|
*
|
|
4687
|
-
*
|
|
4691
|
+
* List product prices
|
|
4692
|
+
* Retrieves pricing data for a specific product type. If a product action/class are specified, only prices for those are returned, if any.
|
|
4688
4693
|
*
|
|
4689
4694
|
* @remarks
|
|
4690
4695
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdPricingProductTypeByProductType endpoint.
|
|
@@ -4739,7 +4744,8 @@ export type GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Res
|
|
|
4739
4744
|
/**
|
|
4740
4745
|
* Response types for GET OrganizationsByOrganizationIdTransactions endpoint
|
|
4741
4746
|
*
|
|
4742
|
-
*
|
|
4747
|
+
* List all transactions
|
|
4748
|
+
* Retrieves a paginated list of transactions for an organization
|
|
4743
4749
|
*
|
|
4744
4750
|
* @remarks
|
|
4745
4751
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdTransactions endpoint.
|
|
@@ -4794,7 +4800,8 @@ export type GET_OrganizationsByOrganizationIdTransactions_Response_422 = HTTPVal
|
|
|
4794
4800
|
/**
|
|
4795
4801
|
* Response types for GET OrganizationsByOrganizationIdTransactionsByTransactionId endpoint
|
|
4796
4802
|
*
|
|
4797
|
-
* Get a specific transaction
|
|
4803
|
+
* Get a specific transaction
|
|
4804
|
+
* Retrieves details for a specific transaction for an organization
|
|
4798
4805
|
*
|
|
4799
4806
|
* @remarks
|
|
4800
4807
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdTransactionsByTransactionId endpoint.
|
|
@@ -4849,7 +4856,7 @@ export type GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Respons
|
|
|
4849
4856
|
/**
|
|
4850
4857
|
* Response types for GET OrganizationsIpRestrictions endpoint
|
|
4851
4858
|
*
|
|
4852
|
-
* List
|
|
4859
|
+
* List IP restrictions
|
|
4853
4860
|
* List all IP restrictions for the organization.
|
|
4854
4861
|
|
|
4855
4862
|
Returns a list of all IP restrictions configured for your organization.
|
|
@@ -4890,7 +4897,7 @@ export type GET_OrganizationsIpRestrictions_Response_200 = IpRestrictionArray
|
|
|
4890
4897
|
/**
|
|
4891
4898
|
* Response types for POST OrganizationsIpRestrictions endpoint
|
|
4892
4899
|
*
|
|
4893
|
-
* Create
|
|
4900
|
+
* Create an IP restriction
|
|
4894
4901
|
* Create a new IP restriction for the organization.
|
|
4895
4902
|
|
|
4896
4903
|
Accepts either a single IP address or a CIDR network range.
|
|
@@ -4949,7 +4956,7 @@ export type POST_OrganizationsIpRestrictions_Response_422 = HTTPValidationError
|
|
|
4949
4956
|
/**
|
|
4950
4957
|
* Response types for DELETE OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
4951
4958
|
*
|
|
4952
|
-
* Delete
|
|
4959
|
+
* Delete an IP restriction
|
|
4953
4960
|
* Delete an IP restriction.
|
|
4954
4961
|
|
|
4955
4962
|
Permanently removes the specified IP restriction from your organization.
|
|
@@ -4989,7 +4996,7 @@ export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = H
|
|
|
4989
4996
|
/**
|
|
4990
4997
|
* Response types for GET OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
4991
4998
|
*
|
|
4992
|
-
* Get
|
|
4999
|
+
* Get an IP restriction
|
|
4993
5000
|
* Get a specific IP restriction by ID.
|
|
4994
5001
|
|
|
4995
5002
|
Returns the details of a specific IP restriction if it exists and belongs to your organization.
|
|
@@ -5048,7 +5055,7 @@ export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HTTP
|
|
|
5048
5055
|
/**
|
|
5049
5056
|
* Response types for PATCH OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
5050
5057
|
*
|
|
5051
|
-
* Update
|
|
5058
|
+
* Update an IP restriction
|
|
5052
5059
|
* Update an existing IP restriction.
|
|
5053
5060
|
|
|
5054
5061
|
You can update the IP network range or the last usage timestamp.
|
|
@@ -5107,7 +5114,8 @@ export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HT
|
|
|
5107
5114
|
/**
|
|
5108
5115
|
* Response types for GET OrganizationsRoles endpoint
|
|
5109
5116
|
*
|
|
5110
|
-
* List
|
|
5117
|
+
* List all roles
|
|
5118
|
+
* Retrieves a list of roles for the current organization
|
|
5111
5119
|
*
|
|
5112
5120
|
* @remarks
|
|
5113
5121
|
* This type defines all possible response structures for the GET OrganizationsRoles endpoint.
|
|
@@ -5127,7 +5135,8 @@ export type GET_OrganizationsRoles_Response = unknown;
|
|
|
5127
5135
|
/**
|
|
5128
5136
|
* Response types for GET OrganizationsUsers endpoint
|
|
5129
5137
|
*
|
|
5130
|
-
* List
|
|
5138
|
+
* List all users
|
|
5139
|
+
* Retrieves a paginated list of users under the current organization
|
|
5131
5140
|
*
|
|
5132
5141
|
* @remarks
|
|
5133
5142
|
* This type defines all possible response structures for the GET OrganizationsUsers endpoint.
|
|
@@ -5182,7 +5191,8 @@ export type GET_OrganizationsUsers_Response_422 = HTTPValidationError
|
|
|
5182
5191
|
/**
|
|
5183
5192
|
* Response types for GET TldsByTld endpoint
|
|
5184
5193
|
*
|
|
5185
|
-
* Get
|
|
5194
|
+
* Get the TLD specification
|
|
5195
|
+
* Retrieves the TLD specification for a given TLD
|
|
5186
5196
|
*
|
|
5187
5197
|
* @remarks
|
|
5188
5198
|
* This type defines all possible response structures for the GET TldsByTld endpoint.
|
|
@@ -5255,7 +5265,8 @@ export type GET_TldsByTld_Response_422 = HTTPValidationError
|
|
|
5255
5265
|
/**
|
|
5256
5266
|
* Response types for GET TldsPortfolio endpoint
|
|
5257
5267
|
*
|
|
5258
|
-
* Get
|
|
5268
|
+
* Get the list of TLDs we support
|
|
5269
|
+
* Retrieves a list of TLDs we have support for
|
|
5259
5270
|
*
|
|
5260
5271
|
* @remarks
|
|
5261
5272
|
* This type defines all possible response structures for the GET TldsPortfolio endpoint.
|
|
@@ -5292,7 +5303,8 @@ export type GET_TldsPortfolio_Response_200 = TldResponseShortArray
|
|
|
5292
5303
|
/**
|
|
5293
5304
|
* Response types for POST Users endpoint
|
|
5294
5305
|
*
|
|
5295
|
-
* Create
|
|
5306
|
+
* Create a user
|
|
5307
|
+
* Create a new user
|
|
5296
5308
|
*
|
|
5297
5309
|
* @remarks
|
|
5298
5310
|
* This type defines all possible response structures for the POST Users endpoint.
|
|
@@ -5347,7 +5359,8 @@ export type POST_Users_Response_422 = HTTPValidationError
|
|
|
5347
5359
|
/**
|
|
5348
5360
|
* Response types for DELETE UsersByUserId endpoint
|
|
5349
5361
|
*
|
|
5350
|
-
* Delete
|
|
5362
|
+
* Delete a user
|
|
5363
|
+
* Delete a user by ID
|
|
5351
5364
|
*
|
|
5352
5365
|
* @remarks
|
|
5353
5366
|
* This type defines all possible response structures for the DELETE UsersByUserId endpoint.
|
|
@@ -5402,7 +5415,8 @@ export type DELETE_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5402
5415
|
/**
|
|
5403
5416
|
* Response types for GET UsersByUserId endpoint
|
|
5404
5417
|
*
|
|
5405
|
-
* Get
|
|
5418
|
+
* Get a user
|
|
5419
|
+
* Get a user by ID
|
|
5406
5420
|
*
|
|
5407
5421
|
* @remarks
|
|
5408
5422
|
* This type defines all possible response structures for the GET UsersByUserId endpoint.
|
|
@@ -5457,7 +5471,8 @@ export type GET_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5457
5471
|
/**
|
|
5458
5472
|
* Response types for PATCH UsersByUserId endpoint
|
|
5459
5473
|
*
|
|
5460
|
-
* Update
|
|
5474
|
+
* Update a user
|
|
5475
|
+
* Update a user by ID
|
|
5461
5476
|
*
|
|
5462
5477
|
* @remarks
|
|
5463
5478
|
* This type defines all possible response structures for the PATCH UsersByUserId endpoint.
|
|
@@ -5512,7 +5527,8 @@ export type PATCH_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5512
5527
|
/**
|
|
5513
5528
|
* Response types for GET UsersByUserIdPermissions endpoint
|
|
5514
5529
|
*
|
|
5515
|
-
* Get
|
|
5530
|
+
* Get user permissions
|
|
5531
|
+
* Get the permissions for a user
|
|
5516
5532
|
*
|
|
5517
5533
|
* @remarks
|
|
5518
5534
|
* This type defines all possible response structures for the GET UsersByUserIdPermissions endpoint.
|
|
@@ -5567,7 +5583,8 @@ export type GET_UsersByUserIdPermissions_Response_422 = HTTPValidationError
|
|
|
5567
5583
|
/**
|
|
5568
5584
|
* Response types for GET UsersByUserIdRoles endpoint
|
|
5569
5585
|
*
|
|
5570
|
-
*
|
|
5586
|
+
* Get user roles
|
|
5587
|
+
* Get the roles for a user
|
|
5571
5588
|
*
|
|
5572
5589
|
* @remarks
|
|
5573
5590
|
* This type defines all possible response structures for the GET UsersByUserIdRoles endpoint.
|
|
@@ -5622,7 +5639,8 @@ export type GET_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
|
5622
5639
|
/**
|
|
5623
5640
|
* Response types for PATCH UsersByUserIdRoles endpoint
|
|
5624
5641
|
*
|
|
5625
|
-
* Update
|
|
5642
|
+
* Update user roles
|
|
5643
|
+
* Update the roles for a user
|
|
5626
5644
|
*
|
|
5627
5645
|
* @remarks
|
|
5628
5646
|
* This type defines all possible response structures for the PATCH UsersByUserIdRoles endpoint.
|
|
@@ -5677,7 +5695,8 @@ export type PATCH_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
|
5677
5695
|
/**
|
|
5678
5696
|
* Response types for GET UsersMe endpoint
|
|
5679
5697
|
*
|
|
5680
|
-
* Get
|
|
5698
|
+
* Get current user
|
|
5699
|
+
* Get the current user
|
|
5681
5700
|
*
|
|
5682
5701
|
* @remarks
|
|
5683
5702
|
* This type defines all possible response structures for the GET UsersMe endpoint.
|