@opusdns/api 0.160.0 → 0.162.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/constants.ts +107 -1
- package/src/helpers/keys.ts +264 -0
- package/src/helpers/requests.d.ts +39 -0
- package/src/helpers/responses.d.ts +93 -1
- package/src/helpers/schemas-arrays.d.ts +15 -1
- package/src/helpers/schemas.d.ts +64 -0
- package/src/openapi.yaml +305 -2
- package/src/schema.d.ts +154 -0
package/src/openapi.yaml
CHANGED
|
@@ -223,6 +223,14 @@ components:
|
|
|
223
223
|
- unique
|
|
224
224
|
title: BrowserStatsBucket
|
|
225
225
|
type: object
|
|
226
|
+
ComplianceStatus:
|
|
227
|
+
enum:
|
|
228
|
+
- preparing
|
|
229
|
+
- pending
|
|
230
|
+
- approved
|
|
231
|
+
- disapproved
|
|
232
|
+
title: ComplianceStatus
|
|
233
|
+
type: string
|
|
226
234
|
ContactAttributeDefinition:
|
|
227
235
|
description: Definition of a possible attribute for a TLD.
|
|
228
236
|
properties:
|
|
@@ -4850,6 +4858,20 @@ components:
|
|
|
4850
4858
|
- pagination
|
|
4851
4859
|
title: Pagination[Organization]
|
|
4852
4860
|
type: object
|
|
4861
|
+
Pagination_ParkingResponse_:
|
|
4862
|
+
properties:
|
|
4863
|
+
pagination:
|
|
4864
|
+
$ref: '#/components/schemas/PaginationMetadata'
|
|
4865
|
+
results:
|
|
4866
|
+
items:
|
|
4867
|
+
$ref: '#/components/schemas/ParkingResponse'
|
|
4868
|
+
title: Results
|
|
4869
|
+
type: array
|
|
4870
|
+
required:
|
|
4871
|
+
- results
|
|
4872
|
+
- pagination
|
|
4873
|
+
title: Pagination[ParkingResponse]
|
|
4874
|
+
type: object
|
|
4853
4875
|
Pagination_RequestHistory_:
|
|
4854
4876
|
properties:
|
|
4855
4877
|
pagination:
|
|
@@ -4878,6 +4900,73 @@ components:
|
|
|
4878
4900
|
- pagination
|
|
4879
4901
|
title: Pagination[UserPublic]
|
|
4880
4902
|
type: object
|
|
4903
|
+
ParkingResponse:
|
|
4904
|
+
properties:
|
|
4905
|
+
compliance_status:
|
|
4906
|
+
anyOf:
|
|
4907
|
+
- $ref: '#/components/schemas/ComplianceStatus'
|
|
4908
|
+
- type: 'null'
|
|
4909
|
+
description: The compliance status of the parking ad
|
|
4910
|
+
content_language:
|
|
4911
|
+
anyOf:
|
|
4912
|
+
- type: string
|
|
4913
|
+
- type: 'null'
|
|
4914
|
+
description: The primary language code for the ad content
|
|
4915
|
+
title: Content Language
|
|
4916
|
+
content_url:
|
|
4917
|
+
anyOf:
|
|
4918
|
+
- type: string
|
|
4919
|
+
- type: 'null'
|
|
4920
|
+
description: The content URL for approved parking ads
|
|
4921
|
+
title: Content Url
|
|
4922
|
+
created_on:
|
|
4923
|
+
description: When the parking entry was created
|
|
4924
|
+
format: date-time
|
|
4925
|
+
title: Created On
|
|
4926
|
+
type: string
|
|
4927
|
+
domain:
|
|
4928
|
+
description: The domain name for the parking ad
|
|
4929
|
+
title: Domain
|
|
4930
|
+
type: string
|
|
4931
|
+
enabled:
|
|
4932
|
+
description: Whether parking is enabled
|
|
4933
|
+
title: Enabled
|
|
4934
|
+
type: boolean
|
|
4935
|
+
note:
|
|
4936
|
+
anyOf:
|
|
4937
|
+
- type: string
|
|
4938
|
+
- type: 'null'
|
|
4939
|
+
description: Additional notes about the parking ad
|
|
4940
|
+
title: Note
|
|
4941
|
+
parking_id:
|
|
4942
|
+
description: Unique identifier for the parking entry
|
|
4943
|
+
examples:
|
|
4944
|
+
- parking_01h45ytscbebyvny4gc8cr8ma2
|
|
4945
|
+
format: typeid
|
|
4946
|
+
pattern: ^parking_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
4947
|
+
title: Parking Id
|
|
4948
|
+
type: string
|
|
4949
|
+
x-typeid-prefix: parking
|
|
4950
|
+
updated_on:
|
|
4951
|
+
description: When the parking entry was last updated
|
|
4952
|
+
format: date-time
|
|
4953
|
+
title: Updated On
|
|
4954
|
+
type: string
|
|
4955
|
+
required:
|
|
4956
|
+
- parking_id
|
|
4957
|
+
- domain
|
|
4958
|
+
- enabled
|
|
4959
|
+
- created_on
|
|
4960
|
+
- updated_on
|
|
4961
|
+
title: ParkingResponse
|
|
4962
|
+
type: object
|
|
4963
|
+
ParkingSortField:
|
|
4964
|
+
enum:
|
|
4965
|
+
- domain
|
|
4966
|
+
- created_on
|
|
4967
|
+
- updated_on
|
|
4968
|
+
title: ParkingSortField
|
|
4969
|
+
type: string
|
|
4881
4970
|
PasswordUpdate:
|
|
4882
4971
|
properties:
|
|
4883
4972
|
new_password:
|
|
@@ -6586,7 +6675,6 @@ components:
|
|
|
6586
6675
|
type: object
|
|
6587
6676
|
securitySchemes:
|
|
6588
6677
|
APIKeyHeader:
|
|
6589
|
-
description: API key for the organization.
|
|
6590
6678
|
in: header
|
|
6591
6679
|
name: X-Api-Key
|
|
6592
6680
|
type: apiKey
|
|
@@ -6659,7 +6747,7 @@ info:
|
|
|
6659
6747
|
'
|
|
6660
6748
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
6661
6749
|
title: OpusDNS API
|
|
6662
|
-
version: 2026-01-
|
|
6750
|
+
version: 2026-01-20-154711
|
|
6663
6751
|
x-logo:
|
|
6664
6752
|
altText: OpusDNS API Reference
|
|
6665
6753
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -6764,6 +6852,7 @@ paths:
|
|
|
6764
6852
|
description: Validation Error
|
|
6765
6853
|
security:
|
|
6766
6854
|
- OAuth2PasswordBearer: []
|
|
6855
|
+
- APIKeyHeader: []
|
|
6767
6856
|
summary: Retrieve email forward logs by alias
|
|
6768
6857
|
tags:
|
|
6769
6858
|
- archive
|
|
@@ -6854,6 +6943,7 @@ paths:
|
|
|
6854
6943
|
description: Validation Error
|
|
6855
6944
|
security:
|
|
6856
6945
|
- OAuth2PasswordBearer: []
|
|
6946
|
+
- APIKeyHeader: []
|
|
6857
6947
|
summary: Retrieve email forward logs
|
|
6858
6948
|
tags:
|
|
6859
6949
|
- archive
|
|
@@ -6980,6 +7070,7 @@ paths:
|
|
|
6980
7070
|
description: Validation Error
|
|
6981
7071
|
security:
|
|
6982
7072
|
- OAuth2PasswordBearer: []
|
|
7073
|
+
- APIKeyHeader: []
|
|
6983
7074
|
summary: Retrieve all object history
|
|
6984
7075
|
tags:
|
|
6985
7076
|
- archive
|
|
@@ -7105,6 +7196,7 @@ paths:
|
|
|
7105
7196
|
description: Validation Error
|
|
7106
7197
|
security:
|
|
7107
7198
|
- OAuth2PasswordBearer: []
|
|
7199
|
+
- APIKeyHeader: []
|
|
7108
7200
|
summary: Retrieve object history
|
|
7109
7201
|
tags:
|
|
7110
7202
|
- archive
|
|
@@ -7263,6 +7355,7 @@ paths:
|
|
|
7263
7355
|
description: Validation Error
|
|
7264
7356
|
security:
|
|
7265
7357
|
- OAuth2PasswordBearer: []
|
|
7358
|
+
- APIKeyHeader: []
|
|
7266
7359
|
summary: Retrieve request history logs
|
|
7267
7360
|
tags:
|
|
7268
7361
|
- archive
|
|
@@ -7376,6 +7469,7 @@ paths:
|
|
|
7376
7469
|
description: Bad Gateway
|
|
7377
7470
|
security:
|
|
7378
7471
|
- OAuth2PasswordBearer: []
|
|
7472
|
+
- APIKeyHeader: []
|
|
7379
7473
|
summary: Check domain availability
|
|
7380
7474
|
tags:
|
|
7381
7475
|
- availability
|
|
@@ -7457,6 +7551,7 @@ paths:
|
|
|
7457
7551
|
description: Bad Gateway
|
|
7458
7552
|
security:
|
|
7459
7553
|
- OAuth2PasswordBearer: []
|
|
7554
|
+
- APIKeyHeader: []
|
|
7460
7555
|
summary: Stream domain availability results
|
|
7461
7556
|
tags:
|
|
7462
7557
|
- availability
|
|
@@ -7567,6 +7662,7 @@ paths:
|
|
|
7567
7662
|
description: Validation Error
|
|
7568
7663
|
security:
|
|
7569
7664
|
- OAuth2PasswordBearer: []
|
|
7665
|
+
- APIKeyHeader: []
|
|
7570
7666
|
summary: List all contacts
|
|
7571
7667
|
tags:
|
|
7572
7668
|
- contact
|
|
@@ -7594,6 +7690,7 @@ paths:
|
|
|
7594
7690
|
description: Validation Error
|
|
7595
7691
|
security:
|
|
7596
7692
|
- OAuth2PasswordBearer: []
|
|
7693
|
+
- APIKeyHeader: []
|
|
7597
7694
|
summary: Create a contact
|
|
7598
7695
|
tags:
|
|
7599
7696
|
- contact
|
|
@@ -7813,6 +7910,7 @@ paths:
|
|
|
7813
7910
|
description: Validation Error
|
|
7814
7911
|
security:
|
|
7815
7912
|
- OAuth2PasswordBearer: []
|
|
7913
|
+
- APIKeyHeader: []
|
|
7816
7914
|
summary: Delete a contact
|
|
7817
7915
|
tags:
|
|
7818
7916
|
- contact
|
|
@@ -7859,6 +7957,7 @@ paths:
|
|
|
7859
7957
|
description: Validation Error
|
|
7860
7958
|
security:
|
|
7861
7959
|
- OAuth2PasswordBearer: []
|
|
7960
|
+
- APIKeyHeader: []
|
|
7862
7961
|
summary: Retrieve a contact
|
|
7863
7962
|
tags:
|
|
7864
7963
|
- contact
|
|
@@ -7913,6 +8012,7 @@ paths:
|
|
|
7913
8012
|
description: Validation Error
|
|
7914
8013
|
security:
|
|
7915
8014
|
- OAuth2PasswordBearer: []
|
|
8015
|
+
- APIKeyHeader: []
|
|
7916
8016
|
summary: Delete contact verification
|
|
7917
8017
|
tags:
|
|
7918
8018
|
- contact
|
|
@@ -7970,6 +8070,7 @@ paths:
|
|
|
7970
8070
|
description: Validation Error
|
|
7971
8071
|
security:
|
|
7972
8072
|
- OAuth2PasswordBearer: []
|
|
8073
|
+
- APIKeyHeader: []
|
|
7973
8074
|
summary: Retrieve contact verification by contact ID
|
|
7974
8075
|
tags:
|
|
7975
8076
|
- contact
|
|
@@ -8048,6 +8149,7 @@ paths:
|
|
|
8048
8149
|
description: Validation Error
|
|
8049
8150
|
security:
|
|
8050
8151
|
- OAuth2PasswordBearer: []
|
|
8152
|
+
- APIKeyHeader: []
|
|
8051
8153
|
summary: Start contact verification
|
|
8052
8154
|
tags:
|
|
8053
8155
|
- contact
|
|
@@ -8135,6 +8237,7 @@ paths:
|
|
|
8135
8237
|
description: Validation Error
|
|
8136
8238
|
security:
|
|
8137
8239
|
- OAuth2PasswordBearer: []
|
|
8240
|
+
- APIKeyHeader: []
|
|
8138
8241
|
summary: Complete contact verification by contact ID
|
|
8139
8242
|
tags:
|
|
8140
8243
|
- contact
|
|
@@ -8288,6 +8391,7 @@ paths:
|
|
|
8288
8391
|
description: Validation Error
|
|
8289
8392
|
security:
|
|
8290
8393
|
- OAuth2PasswordBearer: []
|
|
8394
|
+
- APIKeyHeader: []
|
|
8291
8395
|
summary: List Zones
|
|
8292
8396
|
tags:
|
|
8293
8397
|
- dns
|
|
@@ -8508,6 +8612,7 @@ paths:
|
|
|
8508
8612
|
description: Invalid request parameters
|
|
8509
8613
|
security:
|
|
8510
8614
|
- OAuth2PasswordBearer: []
|
|
8615
|
+
- APIKeyHeader: []
|
|
8511
8616
|
summary: Create Zone
|
|
8512
8617
|
tags:
|
|
8513
8618
|
- dns
|
|
@@ -8624,6 +8729,7 @@ paths:
|
|
|
8624
8729
|
description: Validation Error
|
|
8625
8730
|
security:
|
|
8626
8731
|
- OAuth2PasswordBearer: []
|
|
8732
|
+
- APIKeyHeader: []
|
|
8627
8733
|
summary: List domain forwards by zone
|
|
8628
8734
|
tags:
|
|
8629
8735
|
- dns
|
|
@@ -8708,6 +8814,7 @@ paths:
|
|
|
8708
8814
|
description: Validation Error
|
|
8709
8815
|
security:
|
|
8710
8816
|
- OAuth2PasswordBearer: []
|
|
8817
|
+
- APIKeyHeader: []
|
|
8711
8818
|
summary: List email forwards by zone
|
|
8712
8819
|
tags:
|
|
8713
8820
|
- dns
|
|
@@ -8738,6 +8845,7 @@ paths:
|
|
|
8738
8845
|
description: Validation Error
|
|
8739
8846
|
security:
|
|
8740
8847
|
- OAuth2PasswordBearer: []
|
|
8848
|
+
- APIKeyHeader: []
|
|
8741
8849
|
summary: Get Zones Summary
|
|
8742
8850
|
tags:
|
|
8743
8851
|
- dns
|
|
@@ -8764,6 +8872,7 @@ paths:
|
|
|
8764
8872
|
description: Validation Error
|
|
8765
8873
|
security:
|
|
8766
8874
|
- OAuth2PasswordBearer: []
|
|
8875
|
+
- APIKeyHeader: []
|
|
8767
8876
|
summary: Delete Zone
|
|
8768
8877
|
tags:
|
|
8769
8878
|
- dns
|
|
@@ -8793,6 +8902,7 @@ paths:
|
|
|
8793
8902
|
description: Validation Error
|
|
8794
8903
|
security:
|
|
8795
8904
|
- OAuth2PasswordBearer: []
|
|
8905
|
+
- APIKeyHeader: []
|
|
8796
8906
|
summary: Get Zone
|
|
8797
8907
|
tags:
|
|
8798
8908
|
- dns
|
|
@@ -8878,6 +8988,7 @@ paths:
|
|
|
8878
8988
|
description: Validation Error
|
|
8879
8989
|
security:
|
|
8880
8990
|
- OAuth2PasswordBearer: []
|
|
8991
|
+
- APIKeyHeader: []
|
|
8881
8992
|
summary: Disable Dnssec
|
|
8882
8993
|
tags:
|
|
8883
8994
|
- dns
|
|
@@ -8963,6 +9074,7 @@ paths:
|
|
|
8963
9074
|
description: Validation Error
|
|
8964
9075
|
security:
|
|
8965
9076
|
- OAuth2PasswordBearer: []
|
|
9077
|
+
- APIKeyHeader: []
|
|
8966
9078
|
summary: Enable Dnssec
|
|
8967
9079
|
tags:
|
|
8968
9080
|
- dns
|
|
@@ -9043,6 +9155,7 @@ paths:
|
|
|
9043
9155
|
description: Validation Error
|
|
9044
9156
|
security:
|
|
9045
9157
|
- OAuth2PasswordBearer: []
|
|
9158
|
+
- APIKeyHeader: []
|
|
9046
9159
|
summary: List domain forwards for a zone
|
|
9047
9160
|
tags:
|
|
9048
9161
|
- dns
|
|
@@ -9099,6 +9212,7 @@ paths:
|
|
|
9099
9212
|
description: Validation Error
|
|
9100
9213
|
security:
|
|
9101
9214
|
- OAuth2PasswordBearer: []
|
|
9215
|
+
- APIKeyHeader: []
|
|
9102
9216
|
summary: List email forwards for a zone
|
|
9103
9217
|
tags:
|
|
9104
9218
|
- dns
|
|
@@ -9197,6 +9311,7 @@ paths:
|
|
|
9197
9311
|
description: Validation Error
|
|
9198
9312
|
security:
|
|
9199
9313
|
- OAuth2PasswordBearer: []
|
|
9314
|
+
- APIKeyHeader: []
|
|
9200
9315
|
summary: Patch Zone Records
|
|
9201
9316
|
tags:
|
|
9202
9317
|
- dns
|
|
@@ -9300,6 +9415,7 @@ paths:
|
|
|
9300
9415
|
description: Validation Error
|
|
9301
9416
|
security:
|
|
9302
9417
|
- OAuth2PasswordBearer: []
|
|
9418
|
+
- APIKeyHeader: []
|
|
9303
9419
|
summary: Patch Zone Rrsets
|
|
9304
9420
|
tags:
|
|
9305
9421
|
- dns
|
|
@@ -9400,6 +9516,7 @@ paths:
|
|
|
9400
9516
|
description: Validation Error
|
|
9401
9517
|
security:
|
|
9402
9518
|
- OAuth2PasswordBearer: []
|
|
9519
|
+
- APIKeyHeader: []
|
|
9403
9520
|
summary: Update Zone Rrsets
|
|
9404
9521
|
tags:
|
|
9405
9522
|
- dns
|
|
@@ -9485,6 +9602,7 @@ paths:
|
|
|
9485
9602
|
description: Validation Error
|
|
9486
9603
|
security:
|
|
9487
9604
|
- OAuth2PasswordBearer: []
|
|
9605
|
+
- APIKeyHeader: []
|
|
9488
9606
|
summary: List domain forwards
|
|
9489
9607
|
tags:
|
|
9490
9608
|
- domain_forward
|
|
@@ -9546,6 +9664,7 @@ paths:
|
|
|
9546
9664
|
description: Validation Error
|
|
9547
9665
|
security:
|
|
9548
9666
|
- OAuth2PasswordBearer: []
|
|
9667
|
+
- APIKeyHeader: []
|
|
9549
9668
|
summary: Patch domain forward redirects
|
|
9550
9669
|
tags:
|
|
9551
9670
|
- domain_forward
|
|
@@ -9710,6 +9829,7 @@ paths:
|
|
|
9710
9829
|
description: Validation Error
|
|
9711
9830
|
security:
|
|
9712
9831
|
- OAuth2PasswordBearer: []
|
|
9832
|
+
- APIKeyHeader: []
|
|
9713
9833
|
summary: Create a domain forward
|
|
9714
9834
|
tags:
|
|
9715
9835
|
- domain_forward
|
|
@@ -9758,6 +9878,7 @@ paths:
|
|
|
9758
9878
|
description: Validation Error
|
|
9759
9879
|
security:
|
|
9760
9880
|
- OAuth2PasswordBearer: []
|
|
9881
|
+
- APIKeyHeader: []
|
|
9761
9882
|
summary: Metrics
|
|
9762
9883
|
tags:
|
|
9763
9884
|
- domain_forward
|
|
@@ -9806,6 +9927,7 @@ paths:
|
|
|
9806
9927
|
description: Validation Error
|
|
9807
9928
|
security:
|
|
9808
9929
|
- OAuth2PasswordBearer: []
|
|
9930
|
+
- APIKeyHeader: []
|
|
9809
9931
|
summary: Browser Stats
|
|
9810
9932
|
tags:
|
|
9811
9933
|
- domain_forward
|
|
@@ -9854,6 +9976,7 @@ paths:
|
|
|
9854
9976
|
description: Validation Error
|
|
9855
9977
|
security:
|
|
9856
9978
|
- OAuth2PasswordBearer: []
|
|
9979
|
+
- APIKeyHeader: []
|
|
9857
9980
|
summary: Geo Stats
|
|
9858
9981
|
tags:
|
|
9859
9982
|
- domain_forward
|
|
@@ -9902,6 +10025,7 @@ paths:
|
|
|
9902
10025
|
description: Validation Error
|
|
9903
10026
|
security:
|
|
9904
10027
|
- OAuth2PasswordBearer: []
|
|
10028
|
+
- APIKeyHeader: []
|
|
9905
10029
|
summary: Platform Stats
|
|
9906
10030
|
tags:
|
|
9907
10031
|
- domain_forward
|
|
@@ -9950,6 +10074,7 @@ paths:
|
|
|
9950
10074
|
description: Validation Error
|
|
9951
10075
|
security:
|
|
9952
10076
|
- OAuth2PasswordBearer: []
|
|
10077
|
+
- APIKeyHeader: []
|
|
9953
10078
|
summary: Referrer Stats
|
|
9954
10079
|
tags:
|
|
9955
10080
|
- domain_forward
|
|
@@ -9998,6 +10123,7 @@ paths:
|
|
|
9998
10123
|
description: Validation Error
|
|
9999
10124
|
security:
|
|
10000
10125
|
- OAuth2PasswordBearer: []
|
|
10126
|
+
- APIKeyHeader: []
|
|
10001
10127
|
summary: Status Code Stats
|
|
10002
10128
|
tags:
|
|
10003
10129
|
- domain_forward
|
|
@@ -10046,6 +10172,7 @@ paths:
|
|
|
10046
10172
|
description: Validation Error
|
|
10047
10173
|
security:
|
|
10048
10174
|
- OAuth2PasswordBearer: []
|
|
10175
|
+
- APIKeyHeader: []
|
|
10049
10176
|
summary: Time Series
|
|
10050
10177
|
tags:
|
|
10051
10178
|
- domain_forward
|
|
@@ -10094,6 +10221,7 @@ paths:
|
|
|
10094
10221
|
description: Validation Error
|
|
10095
10222
|
security:
|
|
10096
10223
|
- OAuth2PasswordBearer: []
|
|
10224
|
+
- APIKeyHeader: []
|
|
10097
10225
|
summary: User Agent Stats
|
|
10098
10226
|
tags:
|
|
10099
10227
|
- domain_forward
|
|
@@ -10150,6 +10278,7 @@ paths:
|
|
|
10150
10278
|
description: Validation Error
|
|
10151
10279
|
security:
|
|
10152
10280
|
- OAuth2PasswordBearer: []
|
|
10281
|
+
- APIKeyHeader: []
|
|
10153
10282
|
summary: Visits By Key
|
|
10154
10283
|
tags:
|
|
10155
10284
|
- domain_forward
|
|
@@ -10213,6 +10342,7 @@ paths:
|
|
|
10213
10342
|
description: Validation Error
|
|
10214
10343
|
security:
|
|
10215
10344
|
- OAuth2PasswordBearer: []
|
|
10345
|
+
- APIKeyHeader: []
|
|
10216
10346
|
summary: Delete a domain forward
|
|
10217
10347
|
tags:
|
|
10218
10348
|
- domain_forward
|
|
@@ -10279,6 +10409,7 @@ paths:
|
|
|
10279
10409
|
description: Validation Error
|
|
10280
10410
|
security:
|
|
10281
10411
|
- OAuth2PasswordBearer: []
|
|
10412
|
+
- APIKeyHeader: []
|
|
10282
10413
|
summary: Get a domain forward
|
|
10283
10414
|
tags:
|
|
10284
10415
|
- domain_forward
|
|
@@ -10364,6 +10495,7 @@ paths:
|
|
|
10364
10495
|
description: Validation Error
|
|
10365
10496
|
security:
|
|
10366
10497
|
- OAuth2PasswordBearer: []
|
|
10498
|
+
- APIKeyHeader: []
|
|
10367
10499
|
summary: Create domain forward set
|
|
10368
10500
|
tags:
|
|
10369
10501
|
- domain_forward
|
|
@@ -10416,6 +10548,7 @@ paths:
|
|
|
10416
10548
|
description: Validation Error
|
|
10417
10549
|
security:
|
|
10418
10550
|
- OAuth2PasswordBearer: []
|
|
10551
|
+
- APIKeyHeader: []
|
|
10419
10552
|
summary: Disable domain forward
|
|
10420
10553
|
tags:
|
|
10421
10554
|
- domain_forward
|
|
@@ -10479,6 +10612,7 @@ paths:
|
|
|
10479
10612
|
description: Validation Error
|
|
10480
10613
|
security:
|
|
10481
10614
|
- OAuth2PasswordBearer: []
|
|
10615
|
+
- APIKeyHeader: []
|
|
10482
10616
|
summary: Enable domain forward
|
|
10483
10617
|
tags:
|
|
10484
10618
|
- domain_forward
|
|
@@ -10547,6 +10681,7 @@ paths:
|
|
|
10547
10681
|
description: Validation Error
|
|
10548
10682
|
security:
|
|
10549
10683
|
- OAuth2PasswordBearer: []
|
|
10684
|
+
- APIKeyHeader: []
|
|
10550
10685
|
summary: Delete domain forward set
|
|
10551
10686
|
tags:
|
|
10552
10687
|
- domain_forward
|
|
@@ -10619,6 +10754,7 @@ paths:
|
|
|
10619
10754
|
description: Validation Error
|
|
10620
10755
|
security:
|
|
10621
10756
|
- OAuth2PasswordBearer: []
|
|
10757
|
+
- APIKeyHeader: []
|
|
10622
10758
|
summary: Get domain forward set
|
|
10623
10759
|
tags:
|
|
10624
10760
|
- domain_forward
|
|
@@ -10710,6 +10846,7 @@ paths:
|
|
|
10710
10846
|
description: Validation Error
|
|
10711
10847
|
security:
|
|
10712
10848
|
- OAuth2PasswordBearer: []
|
|
10849
|
+
- APIKeyHeader: []
|
|
10713
10850
|
summary: Create domain forward set (deprecated)
|
|
10714
10851
|
tags:
|
|
10715
10852
|
- domain_forward
|
|
@@ -10789,6 +10926,7 @@ paths:
|
|
|
10789
10926
|
description: Validation Error
|
|
10790
10927
|
security:
|
|
10791
10928
|
- OAuth2PasswordBearer: []
|
|
10929
|
+
- APIKeyHeader: []
|
|
10792
10930
|
summary: Update domain forward set
|
|
10793
10931
|
tags:
|
|
10794
10932
|
- domain_forward
|
|
@@ -10885,6 +11023,7 @@ paths:
|
|
|
10885
11023
|
description: Bad Gateway
|
|
10886
11024
|
security:
|
|
10887
11025
|
- OAuth2PasswordBearer: []
|
|
11026
|
+
- APIKeyHeader: []
|
|
10888
11027
|
summary: Suggest domains
|
|
10889
11028
|
tags:
|
|
10890
11029
|
- domain_search
|
|
@@ -11087,6 +11226,7 @@ paths:
|
|
|
11087
11226
|
description: Validation Error
|
|
11088
11227
|
security:
|
|
11089
11228
|
- OAuth2PasswordBearer: []
|
|
11229
|
+
- APIKeyHeader: []
|
|
11090
11230
|
summary: List all domains
|
|
11091
11231
|
tags:
|
|
11092
11232
|
- domain
|
|
@@ -11153,6 +11293,7 @@ paths:
|
|
|
11153
11293
|
description: Validation Error
|
|
11154
11294
|
security:
|
|
11155
11295
|
- OAuth2PasswordBearer: []
|
|
11296
|
+
- APIKeyHeader: []
|
|
11156
11297
|
summary: Create a domain
|
|
11157
11298
|
tags:
|
|
11158
11299
|
- domain
|
|
@@ -11199,6 +11340,7 @@ paths:
|
|
|
11199
11340
|
description: Validation Error
|
|
11200
11341
|
security:
|
|
11201
11342
|
- OAuth2PasswordBearer: []
|
|
11343
|
+
- APIKeyHeader: []
|
|
11202
11344
|
summary: Check domain availability
|
|
11203
11345
|
tags:
|
|
11204
11346
|
- domain
|
|
@@ -11222,6 +11364,7 @@ paths:
|
|
|
11222
11364
|
description: Validation Error
|
|
11223
11365
|
security:
|
|
11224
11366
|
- OAuth2PasswordBearer: []
|
|
11367
|
+
- APIKeyHeader: []
|
|
11225
11368
|
summary: Get domain summary
|
|
11226
11369
|
tags:
|
|
11227
11370
|
- domain
|
|
@@ -11276,6 +11419,7 @@ paths:
|
|
|
11276
11419
|
description: Validation Error
|
|
11277
11420
|
security:
|
|
11278
11421
|
- OAuth2PasswordBearer: []
|
|
11422
|
+
- APIKeyHeader: []
|
|
11279
11423
|
summary: Withdraw a nic.at domain
|
|
11280
11424
|
tags:
|
|
11281
11425
|
- domain
|
|
@@ -11339,6 +11483,7 @@ paths:
|
|
|
11339
11483
|
description: Validation Error
|
|
11340
11484
|
security:
|
|
11341
11485
|
- OAuth2PasswordBearer: []
|
|
11486
|
+
- APIKeyHeader: []
|
|
11342
11487
|
summary: Requests your auth code directly from DNS Belgium (registry)
|
|
11343
11488
|
tags:
|
|
11344
11489
|
- domain
|
|
@@ -11394,6 +11539,7 @@ paths:
|
|
|
11394
11539
|
description: Validation Error
|
|
11395
11540
|
security:
|
|
11396
11541
|
- OAuth2PasswordBearer: []
|
|
11542
|
+
- APIKeyHeader: []
|
|
11397
11543
|
summary: Transit a DENIC domain
|
|
11398
11544
|
tags:
|
|
11399
11545
|
- domain
|
|
@@ -11457,6 +11603,7 @@ paths:
|
|
|
11457
11603
|
description: Validation Error
|
|
11458
11604
|
security:
|
|
11459
11605
|
- OAuth2PasswordBearer: []
|
|
11606
|
+
- APIKeyHeader: []
|
|
11460
11607
|
summary: Requests your auth code directly from EURid (registry)
|
|
11461
11608
|
tags:
|
|
11462
11609
|
- domain
|
|
@@ -11545,6 +11692,7 @@ paths:
|
|
|
11545
11692
|
description: Unprocessable Content
|
|
11546
11693
|
security:
|
|
11547
11694
|
- OAuth2PasswordBearer: []
|
|
11695
|
+
- APIKeyHeader: []
|
|
11548
11696
|
summary: Transfer a domain
|
|
11549
11697
|
tags:
|
|
11550
11698
|
- domain
|
|
@@ -11607,6 +11755,7 @@ paths:
|
|
|
11607
11755
|
description: Validation Error
|
|
11608
11756
|
security:
|
|
11609
11757
|
- OAuth2PasswordBearer: []
|
|
11758
|
+
- APIKeyHeader: []
|
|
11610
11759
|
summary: Delete a domain
|
|
11611
11760
|
tags:
|
|
11612
11761
|
- domain
|
|
@@ -11655,6 +11804,7 @@ paths:
|
|
|
11655
11804
|
description: Validation Error
|
|
11656
11805
|
security:
|
|
11657
11806
|
- OAuth2PasswordBearer: []
|
|
11807
|
+
- APIKeyHeader: []
|
|
11658
11808
|
summary: Retrieve a domain
|
|
11659
11809
|
tags:
|
|
11660
11810
|
- domain
|
|
@@ -11725,6 +11875,7 @@ paths:
|
|
|
11725
11875
|
description: Validation Error
|
|
11726
11876
|
security:
|
|
11727
11877
|
- OAuth2PasswordBearer: []
|
|
11878
|
+
- APIKeyHeader: []
|
|
11728
11879
|
summary: Update a domain
|
|
11729
11880
|
tags:
|
|
11730
11881
|
- domain
|
|
@@ -11770,6 +11921,7 @@ paths:
|
|
|
11770
11921
|
description: Validation Error
|
|
11771
11922
|
security:
|
|
11772
11923
|
- OAuth2PasswordBearer: []
|
|
11924
|
+
- APIKeyHeader: []
|
|
11773
11925
|
summary: Delete DNSSEC data
|
|
11774
11926
|
tags:
|
|
11775
11927
|
- domain
|
|
@@ -11821,6 +11973,7 @@ paths:
|
|
|
11821
11973
|
description: Validation Error
|
|
11822
11974
|
security:
|
|
11823
11975
|
- OAuth2PasswordBearer: []
|
|
11976
|
+
- APIKeyHeader: []
|
|
11824
11977
|
summary: Retrieve DNSSEC data
|
|
11825
11978
|
tags:
|
|
11826
11979
|
- domain
|
|
@@ -11888,6 +12041,7 @@ paths:
|
|
|
11888
12041
|
description: Unprocessable Content
|
|
11889
12042
|
security:
|
|
11890
12043
|
- OAuth2PasswordBearer: []
|
|
12044
|
+
- APIKeyHeader: []
|
|
11891
12045
|
summary: Update DNSSEC data
|
|
11892
12046
|
tags:
|
|
11893
12047
|
- domain
|
|
@@ -11932,6 +12086,7 @@ paths:
|
|
|
11932
12086
|
description: Validation Error
|
|
11933
12087
|
security:
|
|
11934
12088
|
- OAuth2PasswordBearer: []
|
|
12089
|
+
- APIKeyHeader: []
|
|
11935
12090
|
summary: Disable DNSSEC for domains using our nameservers
|
|
11936
12091
|
tags:
|
|
11937
12092
|
- domain
|
|
@@ -11984,6 +12139,7 @@ paths:
|
|
|
11984
12139
|
description: Validation Error
|
|
11985
12140
|
security:
|
|
11986
12141
|
- OAuth2PasswordBearer: []
|
|
12142
|
+
- APIKeyHeader: []
|
|
11987
12143
|
summary: Enable DNSSEC for domains using our nameservers
|
|
11988
12144
|
tags:
|
|
11989
12145
|
- domain
|
|
@@ -12029,6 +12185,7 @@ paths:
|
|
|
12029
12185
|
description: Validation Error
|
|
12030
12186
|
security:
|
|
12031
12187
|
- OAuth2PasswordBearer: []
|
|
12188
|
+
- APIKeyHeader: []
|
|
12032
12189
|
summary: Renew a domain
|
|
12033
12190
|
tags:
|
|
12034
12191
|
- domain
|
|
@@ -12070,6 +12227,7 @@ paths:
|
|
|
12070
12227
|
description: Validation Error
|
|
12071
12228
|
security:
|
|
12072
12229
|
- OAuth2PasswordBearer: []
|
|
12230
|
+
- APIKeyHeader: []
|
|
12073
12231
|
summary: Restore an eligible domain (during redemption period)
|
|
12074
12232
|
tags:
|
|
12075
12233
|
- domain
|
|
@@ -12130,6 +12288,7 @@ paths:
|
|
|
12130
12288
|
description: Validation Error
|
|
12131
12289
|
security:
|
|
12132
12290
|
- OAuth2PasswordBearer: []
|
|
12291
|
+
- APIKeyHeader: []
|
|
12133
12292
|
summary: Cancel a domain transfer
|
|
12134
12293
|
tags:
|
|
12135
12294
|
- domain
|
|
@@ -12222,6 +12381,7 @@ paths:
|
|
|
12222
12381
|
description: Validation Error
|
|
12223
12382
|
security:
|
|
12224
12383
|
- OAuth2PasswordBearer: []
|
|
12384
|
+
- APIKeyHeader: []
|
|
12225
12385
|
summary: List all email forwards
|
|
12226
12386
|
tags:
|
|
12227
12387
|
- email_forward
|
|
@@ -12300,6 +12460,7 @@ paths:
|
|
|
12300
12460
|
description: Validation Error
|
|
12301
12461
|
security:
|
|
12302
12462
|
- OAuth2PasswordBearer: []
|
|
12463
|
+
- APIKeyHeader: []
|
|
12303
12464
|
summary: Create email forward configuration
|
|
12304
12465
|
tags:
|
|
12305
12466
|
- email_forward
|
|
@@ -12356,6 +12517,7 @@ paths:
|
|
|
12356
12517
|
description: Validation Error
|
|
12357
12518
|
security:
|
|
12358
12519
|
- OAuth2PasswordBearer: []
|
|
12520
|
+
- APIKeyHeader: []
|
|
12359
12521
|
summary: Delete email forward configuration
|
|
12360
12522
|
tags:
|
|
12361
12523
|
- email_forward
|
|
@@ -12426,6 +12588,7 @@ paths:
|
|
|
12426
12588
|
description: Validation Error
|
|
12427
12589
|
security:
|
|
12428
12590
|
- OAuth2PasswordBearer: []
|
|
12591
|
+
- APIKeyHeader: []
|
|
12429
12592
|
summary: Get email forward configuration
|
|
12430
12593
|
tags:
|
|
12431
12594
|
- email_forward
|
|
@@ -12514,6 +12677,7 @@ paths:
|
|
|
12514
12677
|
description: Validation Error
|
|
12515
12678
|
security:
|
|
12516
12679
|
- OAuth2PasswordBearer: []
|
|
12680
|
+
- APIKeyHeader: []
|
|
12517
12681
|
summary: Create email forward alias
|
|
12518
12682
|
tags:
|
|
12519
12683
|
- email_forward
|
|
@@ -12591,6 +12755,7 @@ paths:
|
|
|
12591
12755
|
description: Validation Error
|
|
12592
12756
|
security:
|
|
12593
12757
|
- OAuth2PasswordBearer: []
|
|
12758
|
+
- APIKeyHeader: []
|
|
12594
12759
|
summary: Delete email forward alias
|
|
12595
12760
|
tags:
|
|
12596
12761
|
- email_forward
|
|
@@ -12677,6 +12842,7 @@ paths:
|
|
|
12677
12842
|
description: Validation Error
|
|
12678
12843
|
security:
|
|
12679
12844
|
- OAuth2PasswordBearer: []
|
|
12845
|
+
- APIKeyHeader: []
|
|
12680
12846
|
summary: Update email forward alias
|
|
12681
12847
|
tags:
|
|
12682
12848
|
- email_forward
|
|
@@ -12745,6 +12911,7 @@ paths:
|
|
|
12745
12911
|
description: Validation Error
|
|
12746
12912
|
security:
|
|
12747
12913
|
- OAuth2PasswordBearer: []
|
|
12914
|
+
- APIKeyHeader: []
|
|
12748
12915
|
summary: Disable email forwarding
|
|
12749
12916
|
tags:
|
|
12750
12917
|
- email_forward
|
|
@@ -12812,6 +12979,7 @@ paths:
|
|
|
12812
12979
|
description: Validation Error
|
|
12813
12980
|
security:
|
|
12814
12981
|
- OAuth2PasswordBearer: []
|
|
12982
|
+
- APIKeyHeader: []
|
|
12815
12983
|
summary: Enable email forwarding
|
|
12816
12984
|
tags:
|
|
12817
12985
|
- email_forward
|
|
@@ -12901,6 +13069,7 @@ paths:
|
|
|
12901
13069
|
description: Validation Error
|
|
12902
13070
|
security:
|
|
12903
13071
|
- OAuth2PasswordBearer: []
|
|
13072
|
+
- APIKeyHeader: []
|
|
12904
13073
|
summary: Retrieve email forward metrics
|
|
12905
13074
|
tags:
|
|
12906
13075
|
- email_forward
|
|
@@ -13006,6 +13175,7 @@ paths:
|
|
|
13006
13175
|
description: Validation Error
|
|
13007
13176
|
security:
|
|
13008
13177
|
- OAuth2PasswordBearer: []
|
|
13178
|
+
- APIKeyHeader: []
|
|
13009
13179
|
summary: Get pending events
|
|
13010
13180
|
tags:
|
|
13011
13181
|
- event
|
|
@@ -13065,6 +13235,7 @@ paths:
|
|
|
13065
13235
|
description: Validation Error
|
|
13066
13236
|
security:
|
|
13067
13237
|
- OAuth2PasswordBearer: []
|
|
13238
|
+
- APIKeyHeader: []
|
|
13068
13239
|
summary: Get event
|
|
13069
13240
|
tags:
|
|
13070
13241
|
- event
|
|
@@ -13119,6 +13290,7 @@ paths:
|
|
|
13119
13290
|
description: Validation Error
|
|
13120
13291
|
security:
|
|
13121
13292
|
- OAuth2PasswordBearer: []
|
|
13293
|
+
- APIKeyHeader: []
|
|
13122
13294
|
summary: Acknowledge event
|
|
13123
13295
|
tags:
|
|
13124
13296
|
- event
|
|
@@ -13183,6 +13355,7 @@ paths:
|
|
|
13183
13355
|
description: Validation Error
|
|
13184
13356
|
security:
|
|
13185
13357
|
- OAuth2PasswordBearer: []
|
|
13358
|
+
- APIKeyHeader: []
|
|
13186
13359
|
summary: List all organizations
|
|
13187
13360
|
tags:
|
|
13188
13361
|
- organization
|
|
@@ -13234,6 +13407,7 @@ paths:
|
|
|
13234
13407
|
description: Validation Error
|
|
13235
13408
|
security:
|
|
13236
13409
|
- OAuth2PasswordBearer: []
|
|
13410
|
+
- APIKeyHeader: []
|
|
13237
13411
|
summary: Create an organization
|
|
13238
13412
|
tags:
|
|
13239
13413
|
- organization
|
|
@@ -13309,6 +13483,7 @@ paths:
|
|
|
13309
13483
|
description: Validation Error
|
|
13310
13484
|
security:
|
|
13311
13485
|
- OAuth2PasswordBearer: []
|
|
13486
|
+
- APIKeyHeader: []
|
|
13312
13487
|
summary: List organization attributes
|
|
13313
13488
|
tags:
|
|
13314
13489
|
- organization
|
|
@@ -13380,6 +13555,7 @@ paths:
|
|
|
13380
13555
|
description: Validation Error
|
|
13381
13556
|
security:
|
|
13382
13557
|
- OAuth2PasswordBearer: []
|
|
13558
|
+
- APIKeyHeader: []
|
|
13383
13559
|
summary: Update organization attributes
|
|
13384
13560
|
tags:
|
|
13385
13561
|
- organization
|
|
@@ -13456,6 +13632,7 @@ paths:
|
|
|
13456
13632
|
description: Validation Error
|
|
13457
13633
|
security:
|
|
13458
13634
|
- OAuth2PasswordBearer: []
|
|
13635
|
+
- APIKeyHeader: []
|
|
13459
13636
|
summary: List organization attributes
|
|
13460
13637
|
tags:
|
|
13461
13638
|
- organization
|
|
@@ -13528,6 +13705,7 @@ paths:
|
|
|
13528
13705
|
description: Validation Error
|
|
13529
13706
|
security:
|
|
13530
13707
|
- OAuth2PasswordBearer: []
|
|
13708
|
+
- APIKeyHeader: []
|
|
13531
13709
|
summary: Update organization attributes
|
|
13532
13710
|
tags:
|
|
13533
13711
|
- organization
|
|
@@ -13584,6 +13762,7 @@ paths:
|
|
|
13584
13762
|
description: Validation Error
|
|
13585
13763
|
security:
|
|
13586
13764
|
- OAuth2PasswordBearer: []
|
|
13765
|
+
- APIKeyHeader: []
|
|
13587
13766
|
summary: List IP restrictions
|
|
13588
13767
|
tags:
|
|
13589
13768
|
- organization
|
|
@@ -13641,6 +13820,7 @@ paths:
|
|
|
13641
13820
|
description: Validation Error
|
|
13642
13821
|
security:
|
|
13643
13822
|
- OAuth2PasswordBearer: []
|
|
13823
|
+
- APIKeyHeader: []
|
|
13644
13824
|
summary: Create an IP restriction
|
|
13645
13825
|
tags:
|
|
13646
13826
|
- organization
|
|
@@ -13693,6 +13873,7 @@ paths:
|
|
|
13693
13873
|
description: Validation Error
|
|
13694
13874
|
security:
|
|
13695
13875
|
- OAuth2PasswordBearer: []
|
|
13876
|
+
- APIKeyHeader: []
|
|
13696
13877
|
summary: Delete an IP restriction
|
|
13697
13878
|
tags:
|
|
13698
13879
|
- organization
|
|
@@ -13752,6 +13933,7 @@ paths:
|
|
|
13752
13933
|
description: Validation Error
|
|
13753
13934
|
security:
|
|
13754
13935
|
- OAuth2PasswordBearer: []
|
|
13936
|
+
- APIKeyHeader: []
|
|
13755
13937
|
summary: Get an IP restriction
|
|
13756
13938
|
tags:
|
|
13757
13939
|
- organization
|
|
@@ -13816,6 +13998,7 @@ paths:
|
|
|
13816
13998
|
description: Validation Error
|
|
13817
13999
|
security:
|
|
13818
14000
|
- OAuth2PasswordBearer: []
|
|
14001
|
+
- APIKeyHeader: []
|
|
13819
14002
|
summary: Update an IP restriction
|
|
13820
14003
|
tags:
|
|
13821
14004
|
- organization
|
|
@@ -13861,6 +14044,7 @@ paths:
|
|
|
13861
14044
|
description: Validation Error
|
|
13862
14045
|
security:
|
|
13863
14046
|
- OAuth2PasswordBearer: []
|
|
14047
|
+
- APIKeyHeader: []
|
|
13864
14048
|
summary: List all roles
|
|
13865
14049
|
tags:
|
|
13866
14050
|
- organization
|
|
@@ -13925,6 +14109,7 @@ paths:
|
|
|
13925
14109
|
description: Validation Error
|
|
13926
14110
|
security:
|
|
13927
14111
|
- OAuth2PasswordBearer: []
|
|
14112
|
+
- APIKeyHeader: []
|
|
13928
14113
|
summary: List all users
|
|
13929
14114
|
tags:
|
|
13930
14115
|
- organization
|
|
@@ -13979,6 +14164,7 @@ paths:
|
|
|
13979
14164
|
description: Validation Error
|
|
13980
14165
|
security:
|
|
13981
14166
|
- OAuth2PasswordBearer: []
|
|
14167
|
+
- APIKeyHeader: []
|
|
13982
14168
|
summary: Delete an organization
|
|
13983
14169
|
tags:
|
|
13984
14170
|
- organization
|
|
@@ -14036,6 +14222,7 @@ paths:
|
|
|
14036
14222
|
description: Validation Error
|
|
14037
14223
|
security:
|
|
14038
14224
|
- OAuth2PasswordBearer: []
|
|
14225
|
+
- APIKeyHeader: []
|
|
14039
14226
|
summary: Get organization details
|
|
14040
14227
|
tags:
|
|
14041
14228
|
- organization
|
|
@@ -14099,6 +14286,7 @@ paths:
|
|
|
14099
14286
|
description: Validation Error
|
|
14100
14287
|
security:
|
|
14101
14288
|
- OAuth2PasswordBearer: []
|
|
14289
|
+
- APIKeyHeader: []
|
|
14102
14290
|
summary: Update an organization
|
|
14103
14291
|
tags:
|
|
14104
14292
|
- organization
|
|
@@ -14150,6 +14338,7 @@ paths:
|
|
|
14150
14338
|
description: Validation Error
|
|
14151
14339
|
security:
|
|
14152
14340
|
- OAuth2PasswordBearer: []
|
|
14341
|
+
- APIKeyHeader: []
|
|
14153
14342
|
summary: List all invoices for the organization
|
|
14154
14343
|
tags:
|
|
14155
14344
|
- organization
|
|
@@ -14230,6 +14419,7 @@ paths:
|
|
|
14230
14419
|
description: Validation Error
|
|
14231
14420
|
security:
|
|
14232
14421
|
- OAuth2PasswordBearer: []
|
|
14422
|
+
- APIKeyHeader: []
|
|
14233
14423
|
summary: List product prices
|
|
14234
14424
|
tags:
|
|
14235
14425
|
- organization
|
|
@@ -14386,6 +14576,7 @@ paths:
|
|
|
14386
14576
|
description: Validation Error
|
|
14387
14577
|
security:
|
|
14388
14578
|
- OAuth2PasswordBearer: []
|
|
14579
|
+
- APIKeyHeader: []
|
|
14389
14580
|
summary: List all transactions
|
|
14390
14581
|
tags:
|
|
14391
14582
|
- organization
|
|
@@ -14455,9 +14646,111 @@ paths:
|
|
|
14455
14646
|
description: Validation Error
|
|
14456
14647
|
security:
|
|
14457
14648
|
- OAuth2PasswordBearer: []
|
|
14649
|
+
- APIKeyHeader: []
|
|
14458
14650
|
summary: Get a specific transaction
|
|
14459
14651
|
tags:
|
|
14460
14652
|
- organization
|
|
14653
|
+
/v1/parking:
|
|
14654
|
+
get:
|
|
14655
|
+
description: Retrieves a paginated list of parking entries for the organization
|
|
14656
|
+
operationId: list_parking_v1_parking_get
|
|
14657
|
+
parameters:
|
|
14658
|
+
- in: query
|
|
14659
|
+
name: sort_by
|
|
14660
|
+
required: false
|
|
14661
|
+
schema:
|
|
14662
|
+
$ref: '#/components/schemas/ParkingSortField'
|
|
14663
|
+
default: created_on
|
|
14664
|
+
- in: query
|
|
14665
|
+
name: sort_order
|
|
14666
|
+
required: false
|
|
14667
|
+
schema:
|
|
14668
|
+
$ref: '#/components/schemas/SortOrder'
|
|
14669
|
+
default: desc
|
|
14670
|
+
- in: query
|
|
14671
|
+
name: search
|
|
14672
|
+
required: false
|
|
14673
|
+
schema:
|
|
14674
|
+
anyOf:
|
|
14675
|
+
- type: string
|
|
14676
|
+
- type: 'null'
|
|
14677
|
+
title: Search
|
|
14678
|
+
- in: query
|
|
14679
|
+
name: enabled
|
|
14680
|
+
required: false
|
|
14681
|
+
schema:
|
|
14682
|
+
anyOf:
|
|
14683
|
+
- type: boolean
|
|
14684
|
+
- type: 'null'
|
|
14685
|
+
title: Enabled
|
|
14686
|
+
- in: query
|
|
14687
|
+
name: compliance_status
|
|
14688
|
+
required: false
|
|
14689
|
+
schema:
|
|
14690
|
+
anyOf:
|
|
14691
|
+
- $ref: '#/components/schemas/ComplianceStatus'
|
|
14692
|
+
- type: 'null'
|
|
14693
|
+
title: Compliance Status
|
|
14694
|
+
- in: query
|
|
14695
|
+
name: page
|
|
14696
|
+
required: false
|
|
14697
|
+
schema:
|
|
14698
|
+
default: 1
|
|
14699
|
+
minimum: 1
|
|
14700
|
+
title: Page
|
|
14701
|
+
type: integer
|
|
14702
|
+
- in: query
|
|
14703
|
+
name: page_size
|
|
14704
|
+
required: false
|
|
14705
|
+
schema:
|
|
14706
|
+
default: 10
|
|
14707
|
+
maximum: 1000
|
|
14708
|
+
minimum: 1
|
|
14709
|
+
title: Page Size
|
|
14710
|
+
type: integer
|
|
14711
|
+
responses:
|
|
14712
|
+
'200':
|
|
14713
|
+
content:
|
|
14714
|
+
application/json:
|
|
14715
|
+
schema:
|
|
14716
|
+
$ref: '#/components/schemas/Pagination_ParkingResponse_'
|
|
14717
|
+
description: Successful Response
|
|
14718
|
+
'401':
|
|
14719
|
+
content:
|
|
14720
|
+
application/problem+json:
|
|
14721
|
+
example:
|
|
14722
|
+
code: ERROR_AUTHENTICATION
|
|
14723
|
+
detail: Additional error context.
|
|
14724
|
+
status: 401
|
|
14725
|
+
title: Authentication Error
|
|
14726
|
+
type: authentication
|
|
14727
|
+
schema:
|
|
14728
|
+
$ref: '#/components/schemas/Problem'
|
|
14729
|
+
description: Unauthorized
|
|
14730
|
+
'403':
|
|
14731
|
+
content:
|
|
14732
|
+
application/problem+json:
|
|
14733
|
+
example:
|
|
14734
|
+
code: ERROR_PERMISSION_DENIED
|
|
14735
|
+
detail: Insufficient permissions to perform this action
|
|
14736
|
+
status: 403
|
|
14737
|
+
title: Permission Denied
|
|
14738
|
+
type: permission-denied
|
|
14739
|
+
schema:
|
|
14740
|
+
$ref: '#/components/schemas/Problem'
|
|
14741
|
+
description: Forbidden
|
|
14742
|
+
'422':
|
|
14743
|
+
content:
|
|
14744
|
+
application/problem+json:
|
|
14745
|
+
schema:
|
|
14746
|
+
$ref: '#/components/schemas/HTTPValidationError'
|
|
14747
|
+
description: Validation Error
|
|
14748
|
+
security:
|
|
14749
|
+
- OAuth2PasswordBearer: []
|
|
14750
|
+
- APIKeyHeader: []
|
|
14751
|
+
summary: List parking entries
|
|
14752
|
+
tags:
|
|
14753
|
+
- parking
|
|
14461
14754
|
/v1/tlds/:
|
|
14462
14755
|
get:
|
|
14463
14756
|
description: Retrieves a list of TLD Specifications we have support for
|
|
@@ -14500,6 +14793,7 @@ paths:
|
|
|
14500
14793
|
description: Validation Error
|
|
14501
14794
|
security:
|
|
14502
14795
|
- OAuth2PasswordBearer: []
|
|
14796
|
+
- APIKeyHeader: []
|
|
14503
14797
|
summary: Get list of Specifications for all TLDs we support
|
|
14504
14798
|
tags:
|
|
14505
14799
|
- tld
|
|
@@ -14525,6 +14819,7 @@ paths:
|
|
|
14525
14819
|
description: Validation Error
|
|
14526
14820
|
security:
|
|
14527
14821
|
- OAuth2PasswordBearer: []
|
|
14822
|
+
- APIKeyHeader: []
|
|
14528
14823
|
summary: Get the list of TLDs we support
|
|
14529
14824
|
tags:
|
|
14530
14825
|
- tld
|
|
@@ -14566,6 +14861,7 @@ paths:
|
|
|
14566
14861
|
description: Validation Error
|
|
14567
14862
|
security:
|
|
14568
14863
|
- OAuth2PasswordBearer: []
|
|
14864
|
+
- APIKeyHeader: []
|
|
14569
14865
|
summary: Get the TLD specification
|
|
14570
14866
|
tags:
|
|
14571
14867
|
- tld
|
|
@@ -14594,6 +14890,7 @@ paths:
|
|
|
14594
14890
|
description: Validation Error
|
|
14595
14891
|
security:
|
|
14596
14892
|
- OAuth2PasswordBearer: []
|
|
14893
|
+
- APIKeyHeader: []
|
|
14597
14894
|
summary: Create a user
|
|
14598
14895
|
tags:
|
|
14599
14896
|
- user
|
|
@@ -14704,6 +15001,7 @@ paths:
|
|
|
14704
15001
|
description: Validation Error
|
|
14705
15002
|
security:
|
|
14706
15003
|
- OAuth2PasswordBearer: []
|
|
15004
|
+
- APIKeyHeader: []
|
|
14707
15005
|
summary: Delete a user
|
|
14708
15006
|
tags:
|
|
14709
15007
|
- user
|
|
@@ -14747,6 +15045,7 @@ paths:
|
|
|
14747
15045
|
description: Validation Error
|
|
14748
15046
|
security:
|
|
14749
15047
|
- OAuth2PasswordBearer: []
|
|
15048
|
+
- APIKeyHeader: []
|
|
14750
15049
|
summary: Get a user
|
|
14751
15050
|
tags:
|
|
14752
15051
|
- user
|
|
@@ -14786,6 +15085,7 @@ paths:
|
|
|
14786
15085
|
description: Validation Error
|
|
14787
15086
|
security:
|
|
14788
15087
|
- OAuth2PasswordBearer: []
|
|
15088
|
+
- APIKeyHeader: []
|
|
14789
15089
|
summary: Update a user
|
|
14790
15090
|
tags:
|
|
14791
15091
|
- user
|
|
@@ -14820,6 +15120,7 @@ paths:
|
|
|
14820
15120
|
description: Validation Error
|
|
14821
15121
|
security:
|
|
14822
15122
|
- OAuth2PasswordBearer: []
|
|
15123
|
+
- APIKeyHeader: []
|
|
14823
15124
|
summary: Get user permissions
|
|
14824
15125
|
tags:
|
|
14825
15126
|
- user
|
|
@@ -14854,6 +15155,7 @@ paths:
|
|
|
14854
15155
|
description: Validation Error
|
|
14855
15156
|
security:
|
|
14856
15157
|
- OAuth2PasswordBearer: []
|
|
15158
|
+
- APIKeyHeader: []
|
|
14857
15159
|
summary: Get user roles
|
|
14858
15160
|
tags:
|
|
14859
15161
|
- user
|
|
@@ -14893,6 +15195,7 @@ paths:
|
|
|
14893
15195
|
description: Validation Error
|
|
14894
15196
|
security:
|
|
14895
15197
|
- OAuth2PasswordBearer: []
|
|
15198
|
+
- APIKeyHeader: []
|
|
14896
15199
|
summary: Update user roles
|
|
14897
15200
|
tags:
|
|
14898
15201
|
- user
|