@opusdns/api 0.68.0 → 0.70.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 +93 -66
- package/src/helpers/responses.d.ts +97 -75
- package/src/openapi.yaml +115 -77
- package/src/schema.d.ts +168 -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
|
*
|
|
@@ -2135,6 +2120,7 @@ export type GET_DomainSearchSuggest_Response_502 = Problem
|
|
|
2135
2120
|
|
|
2136
2121
|
*
|
|
2137
2122
|
* @path /v1/domains
|
|
2123
|
+
* @param statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
|
|
2138
2124
|
*
|
|
2139
2125
|
* @see {@link GET_Domains_Response_200} - 200 response type
|
|
2140
2126
|
* @see {@link GET_Domains_Response_422} - 422 response type
|
|
@@ -2154,6 +2140,7 @@ export type GET_Domains_Response = GET_Domains_Response_200 | GET_Domains_Respon
|
|
|
2154
2140
|
|
|
2155
2141
|
*
|
|
2156
2142
|
* @path /v1/domains
|
|
2143
|
+
* @param statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
|
|
2157
2144
|
*
|
|
2158
2145
|
* @see {@link GET_Domains_Response} - The main response type definition
|
|
2159
2146
|
* @see {@link Pagination_Domain} - The actual schema type definition
|
|
@@ -2171,6 +2158,7 @@ export type GET_Domains_Response_200 = Pagination_Domain
|
|
|
2171
2158
|
|
|
2172
2159
|
*
|
|
2173
2160
|
* @path /v1/domains
|
|
2161
|
+
* @param statuses (query) - Filter domains by registry status. Can be specified multiple times (union of all provided values).
|
|
2174
2162
|
*
|
|
2175
2163
|
* @see {@link GET_Domains_Response} - The main response type definition
|
|
2176
2164
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
@@ -2904,7 +2892,7 @@ export type POST_DomainsByDomainReferenceRenew_Response_422 = HTTPValidationErro
|
|
|
2904
2892
|
/**
|
|
2905
2893
|
* Response types for POST DomainsByDomainReferenceRestore endpoint
|
|
2906
2894
|
*
|
|
2907
|
-
* Restore
|
|
2895
|
+
* Restore an eligible domain (during redemption period)
|
|
2908
2896
|
*
|
|
2909
2897
|
* @remarks
|
|
2910
2898
|
* This type defines all possible response structures for the POST DomainsByDomainReferenceRestore endpoint.
|
|
@@ -3597,7 +3585,8 @@ export type PATCH_EmailForwardsByZoneNameEnable_Response_422 = HTTPValidationErr
|
|
|
3597
3585
|
/**
|
|
3598
3586
|
* Response types for GET Events endpoint
|
|
3599
3587
|
*
|
|
3600
|
-
* Get
|
|
3588
|
+
* Get pending events
|
|
3589
|
+
* Retrieves a paginated list of pending events for the organization
|
|
3601
3590
|
*
|
|
3602
3591
|
* @remarks
|
|
3603
3592
|
* This type defines all possible response structures for the GET Events endpoint.
|
|
@@ -3670,7 +3659,8 @@ export type GET_Events_Response_422 = HTTPValidationError
|
|
|
3670
3659
|
/**
|
|
3671
3660
|
* Response types for GET EventsByEventId endpoint
|
|
3672
3661
|
*
|
|
3673
|
-
* Get
|
|
3662
|
+
* Get event
|
|
3663
|
+
* Get an event by its ID
|
|
3674
3664
|
*
|
|
3675
3665
|
* @remarks
|
|
3676
3666
|
* This type defines all possible response structures for the GET EventsByEventId endpoint.
|
|
@@ -3761,7 +3751,8 @@ export type GET_EventsByEventId_Response_422 = HTTPValidationError
|
|
|
3761
3751
|
/**
|
|
3762
3752
|
* Response types for PATCH EventsByEventId endpoint
|
|
3763
3753
|
*
|
|
3764
|
-
* Acknowledge
|
|
3754
|
+
* Acknowledge event
|
|
3755
|
+
* Acknowledge an event
|
|
3765
3756
|
*
|
|
3766
3757
|
* @remarks
|
|
3767
3758
|
* This type defines all possible response structures for the PATCH EventsByEventId endpoint.
|
|
@@ -3834,7 +3825,8 @@ export type PATCH_EventsByEventId_Response_422 = HTTPValidationError
|
|
|
3834
3825
|
/**
|
|
3835
3826
|
* Response types for GET Organizations endpoint
|
|
3836
3827
|
*
|
|
3837
|
-
* List
|
|
3828
|
+
* List all organizations
|
|
3829
|
+
* Retrieves a paginated list of organizations under the current organization
|
|
3838
3830
|
*
|
|
3839
3831
|
* @remarks
|
|
3840
3832
|
* This type defines all possible response structures for the GET Organizations endpoint.
|
|
@@ -3889,7 +3881,8 @@ export type GET_Organizations_Response_422 = HTTPValidationError
|
|
|
3889
3881
|
/**
|
|
3890
3882
|
* Response types for POST Organizations endpoint
|
|
3891
3883
|
*
|
|
3892
|
-
* Create
|
|
3884
|
+
* Create an organization
|
|
3885
|
+
* Create a new organization under the current organization
|
|
3893
3886
|
*
|
|
3894
3887
|
* @remarks
|
|
3895
3888
|
* This type defines all possible response structures for the POST Organizations endpoint.
|
|
@@ -3944,7 +3937,8 @@ export type POST_Organizations_Response_422 = HTTPValidationError
|
|
|
3944
3937
|
/**
|
|
3945
3938
|
* Response types for GET OrganizationsAttributes endpoint
|
|
3946
3939
|
*
|
|
3947
|
-
*
|
|
3940
|
+
* List organization attributes
|
|
3941
|
+
* Retrieves a list of organization attributes for the current organization
|
|
3948
3942
|
*
|
|
3949
3943
|
* @remarks
|
|
3950
3944
|
* This type defines all possible response structures for the GET OrganizationsAttributes endpoint.
|
|
@@ -4002,7 +3996,8 @@ export type GET_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
|
4002
3996
|
/**
|
|
4003
3997
|
* Response types for PATCH OrganizationsAttributes endpoint
|
|
4004
3998
|
*
|
|
4005
|
-
* Update
|
|
3999
|
+
* Update organization attributes
|
|
4000
|
+
* Updates one or more organization attributes for the current organization
|
|
4006
4001
|
*
|
|
4007
4002
|
* @remarks
|
|
4008
4003
|
* This type defines all possible response structures for the PATCH OrganizationsAttributes endpoint.
|
|
@@ -4057,7 +4052,8 @@ export type PATCH_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
|
4057
4052
|
/**
|
|
4058
4053
|
* Response types for GET OrganizationsAttributesByOrganizationId endpoint
|
|
4059
4054
|
*
|
|
4060
|
-
*
|
|
4055
|
+
* List organization attributes
|
|
4056
|
+
* Retrieves a list of organization attributes for the specified organization
|
|
4061
4057
|
*
|
|
4062
4058
|
* @remarks
|
|
4063
4059
|
* This type defines all possible response structures for the GET OrganizationsAttributesByOrganizationId endpoint.
|
|
@@ -4115,7 +4111,8 @@ export type GET_OrganizationsAttributesByOrganizationId_Response_422 = HTTPValid
|
|
|
4115
4111
|
/**
|
|
4116
4112
|
* Response types for PATCH OrganizationsAttributesByOrganizationId endpoint
|
|
4117
4113
|
*
|
|
4118
|
-
* Update
|
|
4114
|
+
* Update organization attributes
|
|
4115
|
+
* Updates one or more organization attributes for the specified organization
|
|
4119
4116
|
*
|
|
4120
4117
|
* @remarks
|
|
4121
4118
|
* This type defines all possible response structures for the PATCH OrganizationsAttributesByOrganizationId endpoint.
|
|
@@ -4170,7 +4167,8 @@ export type PATCH_OrganizationsAttributesByOrganizationId_Response_422 = HTTPVal
|
|
|
4170
4167
|
/**
|
|
4171
4168
|
* Response types for DELETE OrganizationsByOrganizationId endpoint
|
|
4172
4169
|
*
|
|
4173
|
-
* Delete
|
|
4170
|
+
* Delete an organization
|
|
4171
|
+
* Permanently deletes an organization
|
|
4174
4172
|
*
|
|
4175
4173
|
* @remarks
|
|
4176
4174
|
* This type defines all possible response structures for the DELETE OrganizationsByOrganizationId endpoint.
|
|
@@ -4207,7 +4205,8 @@ export type DELETE_OrganizationsByOrganizationId_Response_422 = HTTPValidationEr
|
|
|
4207
4205
|
/**
|
|
4208
4206
|
* Response types for GET OrganizationsByOrganizationId endpoint
|
|
4209
4207
|
*
|
|
4210
|
-
* Get
|
|
4208
|
+
* Get organization details
|
|
4209
|
+
* Retrieves details for a specific organization
|
|
4211
4210
|
*
|
|
4212
4211
|
* @remarks
|
|
4213
4212
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationId endpoint.
|
|
@@ -4262,7 +4261,8 @@ export type GET_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
|
4262
4261
|
/**
|
|
4263
4262
|
* Response types for PATCH OrganizationsByOrganizationId endpoint
|
|
4264
4263
|
*
|
|
4265
|
-
* Update
|
|
4264
|
+
* Update an organization
|
|
4265
|
+
* Updates details for a specific organization
|
|
4266
4266
|
*
|
|
4267
4267
|
* @remarks
|
|
4268
4268
|
* This type defines all possible response structures for the PATCH OrganizationsByOrganizationId endpoint.
|
|
@@ -4317,7 +4317,8 @@ export type PATCH_OrganizationsByOrganizationId_Response_422 = HTTPValidationErr
|
|
|
4317
4317
|
/**
|
|
4318
4318
|
* Response types for POST OrganizationsByOrganizationIdBillingCheckoutSessions endpoint
|
|
4319
4319
|
*
|
|
4320
|
-
*
|
|
4320
|
+
* Create checkout session
|
|
4321
|
+
* Create a checkout session for the organization
|
|
4321
4322
|
*
|
|
4322
4323
|
* @remarks
|
|
4323
4324
|
* This type defines all possible response structures for the POST OrganizationsByOrganizationIdBillingCheckoutSessions endpoint.
|
|
@@ -4372,7 +4373,8 @@ export type POST_OrganizationsByOrganizationIdBillingCheckoutSessions_Response_4
|
|
|
4372
4373
|
/**
|
|
4373
4374
|
* Response types for GET OrganizationsByOrganizationIdBillingPaymentMethods endpoint
|
|
4374
4375
|
*
|
|
4375
|
-
* List
|
|
4376
|
+
* List all payment methods
|
|
4377
|
+
* List all available payment methods for the organization
|
|
4376
4378
|
*
|
|
4377
4379
|
* @remarks
|
|
4378
4380
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdBillingPaymentMethods endpoint.
|
|
@@ -4427,7 +4429,8 @@ export type GET_OrganizationsByOrganizationIdBillingPaymentMethods_Response_422
|
|
|
4427
4429
|
/**
|
|
4428
4430
|
* Response types for DELETE OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMethodId endpoint
|
|
4429
4431
|
*
|
|
4430
|
-
* Delete
|
|
4432
|
+
* Delete a payment method
|
|
4433
|
+
* Delete a payment method for the organization
|
|
4431
4434
|
*
|
|
4432
4435
|
* @remarks
|
|
4433
4436
|
* This type defines all possible response structures for the DELETE OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMethodId endpoint.
|
|
@@ -4464,7 +4467,8 @@ export type DELETE_OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMe
|
|
|
4464
4467
|
/**
|
|
4465
4468
|
* Response types for PATCH OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMethodIdDefault endpoint
|
|
4466
4469
|
*
|
|
4467
|
-
*
|
|
4470
|
+
* Set payment method as default
|
|
4471
|
+
* Set the provided payment method as default for the specified organization
|
|
4468
4472
|
*
|
|
4469
4473
|
* @remarks
|
|
4470
4474
|
* This type defines all possible response structures for the PATCH OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMethodIdDefault endpoint.
|
|
@@ -4519,7 +4523,8 @@ export type PATCH_OrganizationsByOrganizationIdBillingPaymentMethodsByPaymentMet
|
|
|
4519
4523
|
/**
|
|
4520
4524
|
* Response types for POST OrganizationsByOrganizationIdBillingWalletCredits endpoint
|
|
4521
4525
|
*
|
|
4522
|
-
* Credit
|
|
4526
|
+
* Credit wallet
|
|
4527
|
+
* Credit the organization's wallet using the provided amount and payment method
|
|
4523
4528
|
*
|
|
4524
4529
|
* @remarks
|
|
4525
4530
|
* This type defines all possible response structures for the POST OrganizationsByOrganizationIdBillingWalletCredits endpoint.
|
|
@@ -4574,7 +4579,8 @@ export type POST_OrganizationsByOrganizationIdBillingWalletCredits_Response_422
|
|
|
4574
4579
|
/**
|
|
4575
4580
|
* Response types for PATCH OrganizationsByOrganizationIdPlan endpoint
|
|
4576
4581
|
*
|
|
4577
|
-
*
|
|
4582
|
+
* Update organization plan
|
|
4583
|
+
* Changes the plan for an organization
|
|
4578
4584
|
*
|
|
4579
4585
|
* @remarks
|
|
4580
4586
|
* This type defines all possible response structures for the PATCH OrganizationsByOrganizationIdPlan endpoint.
|
|
@@ -4629,7 +4635,8 @@ export type PATCH_OrganizationsByOrganizationIdPlan_Response_422 = HTTPValidatio
|
|
|
4629
4635
|
/**
|
|
4630
4636
|
* Response types for GET OrganizationsByOrganizationIdPlans endpoint
|
|
4631
4637
|
*
|
|
4632
|
-
* Get
|
|
4638
|
+
* Get plans for an organization
|
|
4639
|
+
* Retrieves a list of plans for an organization
|
|
4633
4640
|
*
|
|
4634
4641
|
* @remarks
|
|
4635
4642
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdPlans endpoint.
|
|
@@ -4684,7 +4691,8 @@ export type GET_OrganizationsByOrganizationIdPlans_Response_422 = HTTPValidation
|
|
|
4684
4691
|
/**
|
|
4685
4692
|
* Response types for GET OrganizationsByOrganizationIdPricingProductTypeByProductType endpoint
|
|
4686
4693
|
*
|
|
4687
|
-
*
|
|
4694
|
+
* List product prices
|
|
4695
|
+
* Retrieves pricing data for a specific product type. If a product action/class are specified, only prices for those are returned, if any.
|
|
4688
4696
|
*
|
|
4689
4697
|
* @remarks
|
|
4690
4698
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdPricingProductTypeByProductType endpoint.
|
|
@@ -4739,7 +4747,8 @@ export type GET_OrganizationsByOrganizationIdPricingProductTypeByProductType_Res
|
|
|
4739
4747
|
/**
|
|
4740
4748
|
* Response types for GET OrganizationsByOrganizationIdTransactions endpoint
|
|
4741
4749
|
*
|
|
4742
|
-
*
|
|
4750
|
+
* List all transactions
|
|
4751
|
+
* Retrieves a paginated list of transactions for an organization
|
|
4743
4752
|
*
|
|
4744
4753
|
* @remarks
|
|
4745
4754
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdTransactions endpoint.
|
|
@@ -4794,7 +4803,8 @@ export type GET_OrganizationsByOrganizationIdTransactions_Response_422 = HTTPVal
|
|
|
4794
4803
|
/**
|
|
4795
4804
|
* Response types for GET OrganizationsByOrganizationIdTransactionsByTransactionId endpoint
|
|
4796
4805
|
*
|
|
4797
|
-
* Get a specific transaction
|
|
4806
|
+
* Get a specific transaction
|
|
4807
|
+
* Retrieves details for a specific transaction for an organization
|
|
4798
4808
|
*
|
|
4799
4809
|
* @remarks
|
|
4800
4810
|
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdTransactionsByTransactionId endpoint.
|
|
@@ -4849,7 +4859,7 @@ export type GET_OrganizationsByOrganizationIdTransactionsByTransactionId_Respons
|
|
|
4849
4859
|
/**
|
|
4850
4860
|
* Response types for GET OrganizationsIpRestrictions endpoint
|
|
4851
4861
|
*
|
|
4852
|
-
* List
|
|
4862
|
+
* List IP restrictions
|
|
4853
4863
|
* List all IP restrictions for the organization.
|
|
4854
4864
|
|
|
4855
4865
|
Returns a list of all IP restrictions configured for your organization.
|
|
@@ -4890,7 +4900,7 @@ export type GET_OrganizationsIpRestrictions_Response_200 = IpRestrictionArray
|
|
|
4890
4900
|
/**
|
|
4891
4901
|
* Response types for POST OrganizationsIpRestrictions endpoint
|
|
4892
4902
|
*
|
|
4893
|
-
* Create
|
|
4903
|
+
* Create an IP restriction
|
|
4894
4904
|
* Create a new IP restriction for the organization.
|
|
4895
4905
|
|
|
4896
4906
|
Accepts either a single IP address or a CIDR network range.
|
|
@@ -4949,7 +4959,7 @@ export type POST_OrganizationsIpRestrictions_Response_422 = HTTPValidationError
|
|
|
4949
4959
|
/**
|
|
4950
4960
|
* Response types for DELETE OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
4951
4961
|
*
|
|
4952
|
-
* Delete
|
|
4962
|
+
* Delete an IP restriction
|
|
4953
4963
|
* Delete an IP restriction.
|
|
4954
4964
|
|
|
4955
4965
|
Permanently removes the specified IP restriction from your organization.
|
|
@@ -4989,7 +4999,7 @@ export type DELETE_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = H
|
|
|
4989
4999
|
/**
|
|
4990
5000
|
* Response types for GET OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
4991
5001
|
*
|
|
4992
|
-
* Get
|
|
5002
|
+
* Get an IP restriction
|
|
4993
5003
|
* Get a specific IP restriction by ID.
|
|
4994
5004
|
|
|
4995
5005
|
Returns the details of a specific IP restriction if it exists and belongs to your organization.
|
|
@@ -5048,7 +5058,7 @@ export type GET_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HTTP
|
|
|
5048
5058
|
/**
|
|
5049
5059
|
* Response types for PATCH OrganizationsIpRestrictionsByIpRestrictionId endpoint
|
|
5050
5060
|
*
|
|
5051
|
-
* Update
|
|
5061
|
+
* Update an IP restriction
|
|
5052
5062
|
* Update an existing IP restriction.
|
|
5053
5063
|
|
|
5054
5064
|
You can update the IP network range or the last usage timestamp.
|
|
@@ -5107,7 +5117,8 @@ export type PATCH_OrganizationsIpRestrictionsByIpRestrictionId_Response_422 = HT
|
|
|
5107
5117
|
/**
|
|
5108
5118
|
* Response types for GET OrganizationsRoles endpoint
|
|
5109
5119
|
*
|
|
5110
|
-
* List
|
|
5120
|
+
* List all roles
|
|
5121
|
+
* Retrieves a list of roles for the current organization
|
|
5111
5122
|
*
|
|
5112
5123
|
* @remarks
|
|
5113
5124
|
* This type defines all possible response structures for the GET OrganizationsRoles endpoint.
|
|
@@ -5127,7 +5138,8 @@ export type GET_OrganizationsRoles_Response = unknown;
|
|
|
5127
5138
|
/**
|
|
5128
5139
|
* Response types for GET OrganizationsUsers endpoint
|
|
5129
5140
|
*
|
|
5130
|
-
* List
|
|
5141
|
+
* List all users
|
|
5142
|
+
* Retrieves a paginated list of users under the current organization
|
|
5131
5143
|
*
|
|
5132
5144
|
* @remarks
|
|
5133
5145
|
* This type defines all possible response structures for the GET OrganizationsUsers endpoint.
|
|
@@ -5182,7 +5194,8 @@ export type GET_OrganizationsUsers_Response_422 = HTTPValidationError
|
|
|
5182
5194
|
/**
|
|
5183
5195
|
* Response types for GET TldsByTld endpoint
|
|
5184
5196
|
*
|
|
5185
|
-
* Get
|
|
5197
|
+
* Get the TLD specification
|
|
5198
|
+
* Retrieves the TLD specification for a given TLD
|
|
5186
5199
|
*
|
|
5187
5200
|
* @remarks
|
|
5188
5201
|
* This type defines all possible response structures for the GET TldsByTld endpoint.
|
|
@@ -5255,7 +5268,8 @@ export type GET_TldsByTld_Response_422 = HTTPValidationError
|
|
|
5255
5268
|
/**
|
|
5256
5269
|
* Response types for GET TldsPortfolio endpoint
|
|
5257
5270
|
*
|
|
5258
|
-
* Get
|
|
5271
|
+
* Get the list of TLDs we support
|
|
5272
|
+
* Retrieves a list of TLDs we have support for
|
|
5259
5273
|
*
|
|
5260
5274
|
* @remarks
|
|
5261
5275
|
* This type defines all possible response structures for the GET TldsPortfolio endpoint.
|
|
@@ -5292,7 +5306,8 @@ export type GET_TldsPortfolio_Response_200 = TldResponseShortArray
|
|
|
5292
5306
|
/**
|
|
5293
5307
|
* Response types for POST Users endpoint
|
|
5294
5308
|
*
|
|
5295
|
-
* Create
|
|
5309
|
+
* Create a user
|
|
5310
|
+
* Create a new user
|
|
5296
5311
|
*
|
|
5297
5312
|
* @remarks
|
|
5298
5313
|
* This type defines all possible response structures for the POST Users endpoint.
|
|
@@ -5347,7 +5362,8 @@ export type POST_Users_Response_422 = HTTPValidationError
|
|
|
5347
5362
|
/**
|
|
5348
5363
|
* Response types for DELETE UsersByUserId endpoint
|
|
5349
5364
|
*
|
|
5350
|
-
* Delete
|
|
5365
|
+
* Delete a user
|
|
5366
|
+
* Delete a user by ID
|
|
5351
5367
|
*
|
|
5352
5368
|
* @remarks
|
|
5353
5369
|
* This type defines all possible response structures for the DELETE UsersByUserId endpoint.
|
|
@@ -5402,7 +5418,8 @@ export type DELETE_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5402
5418
|
/**
|
|
5403
5419
|
* Response types for GET UsersByUserId endpoint
|
|
5404
5420
|
*
|
|
5405
|
-
* Get
|
|
5421
|
+
* Get a user
|
|
5422
|
+
* Get a user by ID
|
|
5406
5423
|
*
|
|
5407
5424
|
* @remarks
|
|
5408
5425
|
* This type defines all possible response structures for the GET UsersByUserId endpoint.
|
|
@@ -5457,7 +5474,8 @@ export type GET_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5457
5474
|
/**
|
|
5458
5475
|
* Response types for PATCH UsersByUserId endpoint
|
|
5459
5476
|
*
|
|
5460
|
-
* Update
|
|
5477
|
+
* Update a user
|
|
5478
|
+
* Update a user by ID
|
|
5461
5479
|
*
|
|
5462
5480
|
* @remarks
|
|
5463
5481
|
* This type defines all possible response structures for the PATCH UsersByUserId endpoint.
|
|
@@ -5512,7 +5530,8 @@ export type PATCH_UsersByUserId_Response_422 = HTTPValidationError
|
|
|
5512
5530
|
/**
|
|
5513
5531
|
* Response types for GET UsersByUserIdPermissions endpoint
|
|
5514
5532
|
*
|
|
5515
|
-
* Get
|
|
5533
|
+
* Get user permissions
|
|
5534
|
+
* Get the permissions for a user
|
|
5516
5535
|
*
|
|
5517
5536
|
* @remarks
|
|
5518
5537
|
* This type defines all possible response structures for the GET UsersByUserIdPermissions endpoint.
|
|
@@ -5567,7 +5586,8 @@ export type GET_UsersByUserIdPermissions_Response_422 = HTTPValidationError
|
|
|
5567
5586
|
/**
|
|
5568
5587
|
* Response types for GET UsersByUserIdRoles endpoint
|
|
5569
5588
|
*
|
|
5570
|
-
*
|
|
5589
|
+
* Get user roles
|
|
5590
|
+
* Get the roles for a user
|
|
5571
5591
|
*
|
|
5572
5592
|
* @remarks
|
|
5573
5593
|
* This type defines all possible response structures for the GET UsersByUserIdRoles endpoint.
|
|
@@ -5622,7 +5642,8 @@ export type GET_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
|
5622
5642
|
/**
|
|
5623
5643
|
* Response types for PATCH UsersByUserIdRoles endpoint
|
|
5624
5644
|
*
|
|
5625
|
-
* Update
|
|
5645
|
+
* Update user roles
|
|
5646
|
+
* Update the roles for a user
|
|
5626
5647
|
*
|
|
5627
5648
|
* @remarks
|
|
5628
5649
|
* This type defines all possible response structures for the PATCH UsersByUserIdRoles endpoint.
|
|
@@ -5677,7 +5698,8 @@ export type PATCH_UsersByUserIdRoles_Response_422 = HTTPValidationError
|
|
|
5677
5698
|
/**
|
|
5678
5699
|
* Response types for GET UsersMe endpoint
|
|
5679
5700
|
*
|
|
5680
|
-
* Get
|
|
5701
|
+
* Get current user
|
|
5702
|
+
* Get the current user
|
|
5681
5703
|
*
|
|
5682
5704
|
* @remarks
|
|
5683
5705
|
* This type defines all possible response structures for the GET UsersMe endpoint.
|