@opusdns/api 1.66.0 → 1.68.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 +21 -0
- package/src/helpers/keys.ts +41 -0
- package/src/helpers/requests.d.ts +26 -0
- package/src/helpers/responses.d.ts +28 -0
- package/src/helpers/schemas.d.ts +4 -0
- package/src/openapi.yaml +611 -1
- package/src/schema.d.ts +1786 -195
package/src/openapi.yaml
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
components:
|
|
2
|
+
parameters:
|
|
3
|
+
DatetimeFormatHeader:
|
|
4
|
+
description: Opt in to RFC 3339 datetime serialization. When set to `rfc3339`,
|
|
5
|
+
response datetimes are normalized to UTC and serialized with a `Z` suffix.
|
|
6
|
+
This is opt-in until the announced default cutover date, after which RFC 3339
|
|
7
|
+
becomes the default and this header is accepted as a no-op. Any other value
|
|
8
|
+
or omission uses the current default serialization.
|
|
9
|
+
example: rfc3339
|
|
10
|
+
in: header
|
|
11
|
+
name: X-Datetime-Format
|
|
12
|
+
required: false
|
|
13
|
+
schema:
|
|
14
|
+
enum:
|
|
15
|
+
- rfc3339
|
|
16
|
+
type: string
|
|
2
17
|
schemas:
|
|
3
18
|
AllocationMethodType:
|
|
4
19
|
enum:
|
|
@@ -3400,6 +3415,8 @@ components:
|
|
|
3400
3415
|
- nor_id_applicant_version
|
|
3401
3416
|
- nor_id_applicant_accept_name
|
|
3402
3417
|
- nor_id_applicant_accept_date
|
|
3418
|
+
- nor_id_declaration
|
|
3419
|
+
- nor_id_declaration_token
|
|
3403
3420
|
title: DomainAttributeKey
|
|
3404
3421
|
type: string
|
|
3405
3422
|
DomainAvailability:
|
|
@@ -8799,6 +8816,109 @@ components:
|
|
|
8799
8816
|
- hostname
|
|
8800
8817
|
title: Nameserver
|
|
8801
8818
|
type: object
|
|
8819
|
+
NorIdDeclarationConfirmRequest:
|
|
8820
|
+
properties:
|
|
8821
|
+
accept_name:
|
|
8822
|
+
description: The full name of the person signing the applicant declaration.
|
|
8823
|
+
For private individuals this is the subscriber personally; for organizations
|
|
8824
|
+
it must be an authorized representative.
|
|
8825
|
+
maxLength: 255
|
|
8826
|
+
minLength: 1
|
|
8827
|
+
title: Accept Name
|
|
8828
|
+
type: string
|
|
8829
|
+
required:
|
|
8830
|
+
- accept_name
|
|
8831
|
+
title: NorIdDeclarationConfirmRequest
|
|
8832
|
+
type: object
|
|
8833
|
+
NorIdDeclarationResponse:
|
|
8834
|
+
properties:
|
|
8835
|
+
declaration_contract_text:
|
|
8836
|
+
description: The fixed Norwegian declaration contract text
|
|
8837
|
+
title: Declaration Contract Text
|
|
8838
|
+
type: string
|
|
8839
|
+
declaration_header:
|
|
8840
|
+
description: The fixed Norwegian declaration header
|
|
8841
|
+
title: Declaration Header
|
|
8842
|
+
type: string
|
|
8843
|
+
declaration_introduction:
|
|
8844
|
+
description: The fixed Norwegian declaration introduction
|
|
8845
|
+
title: Declaration Introduction
|
|
8846
|
+
type: string
|
|
8847
|
+
declaration_version:
|
|
8848
|
+
description: The applicant declaration text version
|
|
8849
|
+
title: Declaration Version
|
|
8850
|
+
type: string
|
|
8851
|
+
domain_name:
|
|
8852
|
+
description: The domain name the declaration applies to
|
|
8853
|
+
title: Domain Name
|
|
8854
|
+
type: string
|
|
8855
|
+
expires_on:
|
|
8856
|
+
description: When the unconfirmed create request expires
|
|
8857
|
+
format: date-time
|
|
8858
|
+
title: Expires On
|
|
8859
|
+
type: string
|
|
8860
|
+
identity_type:
|
|
8861
|
+
anyOf:
|
|
8862
|
+
- type: string
|
|
8863
|
+
- type: 'null'
|
|
8864
|
+
description: The subscriber identity type
|
|
8865
|
+
title: Identity Type
|
|
8866
|
+
identity_value:
|
|
8867
|
+
anyOf:
|
|
8868
|
+
- type: string
|
|
8869
|
+
- type: 'null'
|
|
8870
|
+
description: The subscriber identity (organization number or Person-ID)
|
|
8871
|
+
title: Identity Value
|
|
8872
|
+
status:
|
|
8873
|
+
$ref: '#/components/schemas/NorIdDeclarationStatus'
|
|
8874
|
+
description: The declaration status
|
|
8875
|
+
subscriber_name:
|
|
8876
|
+
description: The domain name subscriber (registrant)
|
|
8877
|
+
title: Subscriber Name
|
|
8878
|
+
type: string
|
|
8879
|
+
required:
|
|
8880
|
+
- domain_name
|
|
8881
|
+
- subscriber_name
|
|
8882
|
+
- declaration_version
|
|
8883
|
+
- declaration_header
|
|
8884
|
+
- declaration_introduction
|
|
8885
|
+
- declaration_contract_text
|
|
8886
|
+
- status
|
|
8887
|
+
- expires_on
|
|
8888
|
+
title: NorIdDeclarationResponse
|
|
8889
|
+
type: object
|
|
8890
|
+
NorIdDeclarationStatus:
|
|
8891
|
+
enum:
|
|
8892
|
+
- pending
|
|
8893
|
+
- confirmed
|
|
8894
|
+
- completed
|
|
8895
|
+
- expired
|
|
8896
|
+
- failed
|
|
8897
|
+
title: NorIdDeclarationStatus
|
|
8898
|
+
type: string
|
|
8899
|
+
NorIdResellerDeclarationRequest:
|
|
8900
|
+
properties:
|
|
8901
|
+
accept_date:
|
|
8902
|
+
anyOf:
|
|
8903
|
+
- format: date-time
|
|
8904
|
+
type: string
|
|
8905
|
+
- type: 'null'
|
|
8906
|
+
description: UTC timestamp of the declaration signature. Only provide it
|
|
8907
|
+
when the declaration was signed out-of-band (e.g. via Norid's own tool);
|
|
8908
|
+
defaults to the submission time.
|
|
8909
|
+
title: Accept Date
|
|
8910
|
+
accept_name:
|
|
8911
|
+
description: The full name of the person signing the applicant declaration.
|
|
8912
|
+
For private individuals this is the subscriber personally; for organizations
|
|
8913
|
+
it must be an authorized representative.
|
|
8914
|
+
maxLength: 255
|
|
8915
|
+
minLength: 1
|
|
8916
|
+
title: Accept Name
|
|
8917
|
+
type: string
|
|
8918
|
+
required:
|
|
8919
|
+
- accept_name
|
|
8920
|
+
title: NorIdResellerDeclarationRequest
|
|
8921
|
+
type: object
|
|
8802
8922
|
ObjectEventType:
|
|
8803
8923
|
enum:
|
|
8804
8924
|
- CREATED
|
|
@@ -13887,7 +14007,7 @@ info:
|
|
|
13887
14007
|
\n\n"
|
|
13888
14008
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
13889
14009
|
title: OpusDNS API
|
|
13890
|
-
version: 2026-07-17-
|
|
14010
|
+
version: 2026-07-17-222747
|
|
13891
14011
|
x-logo:
|
|
13892
14012
|
altText: OpusDNS API Reference
|
|
13893
14013
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -13908,6 +14028,7 @@ paths:
|
|
|
13908
14028
|
title: Context Id
|
|
13909
14029
|
type: string
|
|
13910
14030
|
x-typeid-prefix: ctx
|
|
14031
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
13911
14032
|
responses:
|
|
13912
14033
|
'200':
|
|
13913
14034
|
content:
|
|
@@ -14023,6 +14144,7 @@ paths:
|
|
|
14023
14144
|
- type: 'null'
|
|
14024
14145
|
description: Full-text search on title/summary.
|
|
14025
14146
|
title: Q
|
|
14147
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14026
14148
|
responses:
|
|
14027
14149
|
'200':
|
|
14028
14150
|
content:
|
|
@@ -14082,6 +14204,8 @@ paths:
|
|
|
14082
14204
|
- ai_concierge:manage
|
|
14083
14205
|
post:
|
|
14084
14206
|
operationId: create_conversation_v1_ai_concierge_conversations_post
|
|
14207
|
+
parameters:
|
|
14208
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14085
14209
|
requestBody:
|
|
14086
14210
|
content:
|
|
14087
14211
|
application/json:
|
|
@@ -14162,6 +14286,7 @@ paths:
|
|
|
14162
14286
|
title: Conversation Id
|
|
14163
14287
|
type: string
|
|
14164
14288
|
x-typeid-prefix: conv
|
|
14289
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14165
14290
|
responses:
|
|
14166
14291
|
'204':
|
|
14167
14292
|
description: Successful Response
|
|
@@ -14229,6 +14354,7 @@ paths:
|
|
|
14229
14354
|
title: Conversation Id
|
|
14230
14355
|
type: string
|
|
14231
14356
|
x-typeid-prefix: conv
|
|
14357
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14232
14358
|
responses:
|
|
14233
14359
|
'200':
|
|
14234
14360
|
content:
|
|
@@ -14310,6 +14436,7 @@ paths:
|
|
|
14310
14436
|
- type: string
|
|
14311
14437
|
- type: 'null'
|
|
14312
14438
|
title: If-Match
|
|
14439
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14313
14440
|
requestBody:
|
|
14314
14441
|
content:
|
|
14315
14442
|
application/json:
|
|
@@ -14405,6 +14532,7 @@ paths:
|
|
|
14405
14532
|
minimum: 1
|
|
14406
14533
|
title: Page Size
|
|
14407
14534
|
type: integer
|
|
14535
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14408
14536
|
responses:
|
|
14409
14537
|
'200':
|
|
14410
14538
|
content:
|
|
@@ -14476,6 +14604,7 @@ paths:
|
|
|
14476
14604
|
title: Conversation Id
|
|
14477
14605
|
type: string
|
|
14478
14606
|
x-typeid-prefix: conv
|
|
14607
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14479
14608
|
requestBody:
|
|
14480
14609
|
content:
|
|
14481
14610
|
application/json:
|
|
@@ -14628,6 +14757,7 @@ paths:
|
|
|
14628
14757
|
description: Comma-separated tokens to exclude (case-insensitive). Supports
|
|
14629
14758
|
`tools`.
|
|
14630
14759
|
title: Exclude
|
|
14760
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14631
14761
|
responses:
|
|
14632
14762
|
'200':
|
|
14633
14763
|
content:
|
|
@@ -14699,6 +14829,7 @@ paths:
|
|
|
14699
14829
|
title: Conversation Id
|
|
14700
14830
|
type: string
|
|
14701
14831
|
x-typeid-prefix: conv
|
|
14832
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14702
14833
|
requestBody:
|
|
14703
14834
|
content:
|
|
14704
14835
|
application/json:
|
|
@@ -14788,6 +14919,7 @@ paths:
|
|
|
14788
14919
|
title: Message Id
|
|
14789
14920
|
type: string
|
|
14790
14921
|
x-typeid-prefix: msg
|
|
14922
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14791
14923
|
responses:
|
|
14792
14924
|
'200':
|
|
14793
14925
|
content:
|
|
@@ -14876,6 +15008,7 @@ paths:
|
|
|
14876
15008
|
- type: string
|
|
14877
15009
|
- type: 'null'
|
|
14878
15010
|
title: Kind
|
|
15011
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14879
15012
|
responses:
|
|
14880
15013
|
'200':
|
|
14881
15014
|
content:
|
|
@@ -14935,6 +15068,8 @@ paths:
|
|
|
14935
15068
|
- ai_concierge:manage
|
|
14936
15069
|
post:
|
|
14937
15070
|
operationId: create_memory_fact_v1_ai_concierge_memory_facts_post
|
|
15071
|
+
parameters:
|
|
15072
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
14938
15073
|
requestBody:
|
|
14939
15074
|
content:
|
|
14940
15075
|
application/json:
|
|
@@ -15013,6 +15148,7 @@ paths:
|
|
|
15013
15148
|
title: Fact Id
|
|
15014
15149
|
type: string
|
|
15015
15150
|
x-typeid-prefix: fact
|
|
15151
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15016
15152
|
responses:
|
|
15017
15153
|
'204':
|
|
15018
15154
|
description: Successful Response
|
|
@@ -15080,6 +15216,7 @@ paths:
|
|
|
15080
15216
|
title: Fact Id
|
|
15081
15217
|
type: string
|
|
15082
15218
|
x-typeid-prefix: fact
|
|
15219
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15083
15220
|
requestBody:
|
|
15084
15221
|
content:
|
|
15085
15222
|
application/json:
|
|
@@ -15227,6 +15364,7 @@ paths:
|
|
|
15227
15364
|
type: string
|
|
15228
15365
|
- type: 'null'
|
|
15229
15366
|
title: End Time
|
|
15367
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15230
15368
|
responses:
|
|
15231
15369
|
'200':
|
|
15232
15370
|
content:
|
|
@@ -15320,6 +15458,7 @@ paths:
|
|
|
15320
15458
|
type: string
|
|
15321
15459
|
- type: 'null'
|
|
15322
15460
|
title: End Time
|
|
15461
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15323
15462
|
responses:
|
|
15324
15463
|
'200':
|
|
15325
15464
|
content:
|
|
@@ -15449,6 +15588,7 @@ paths:
|
|
|
15449
15588
|
- type: string
|
|
15450
15589
|
- type: 'null'
|
|
15451
15590
|
title: Object Id
|
|
15591
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15452
15592
|
responses:
|
|
15453
15593
|
'200':
|
|
15454
15594
|
content:
|
|
@@ -15577,6 +15717,7 @@ paths:
|
|
|
15577
15717
|
type: string
|
|
15578
15718
|
- type: 'null'
|
|
15579
15719
|
title: Created After
|
|
15720
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15580
15721
|
responses:
|
|
15581
15722
|
'200':
|
|
15582
15723
|
content:
|
|
@@ -15739,6 +15880,7 @@ paths:
|
|
|
15739
15880
|
type: string
|
|
15740
15881
|
- type: 'null'
|
|
15741
15882
|
title: Request Started After
|
|
15883
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15742
15884
|
responses:
|
|
15743
15885
|
'200':
|
|
15744
15886
|
content:
|
|
@@ -15766,6 +15908,8 @@ paths:
|
|
|
15766
15908
|
used to authenticate the request, including its organization. Requires API-key
|
|
15767
15909
|
or organization-token authentication; user tokens are rejected.
|
|
15768
15910
|
operationId: introspect_client_credential_v1_auth_client_credentials_introspect_get
|
|
15911
|
+
parameters:
|
|
15912
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15769
15913
|
responses:
|
|
15770
15914
|
'200':
|
|
15771
15915
|
content:
|
|
@@ -15800,6 +15944,8 @@ paths:
|
|
|
15800
15944
|
/v1/auth/token:
|
|
15801
15945
|
post:
|
|
15802
15946
|
operationId: issue_organization_token_v1_auth_token_post
|
|
15947
|
+
parameters:
|
|
15948
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15803
15949
|
requestBody:
|
|
15804
15950
|
content:
|
|
15805
15951
|
application/json:
|
|
@@ -15865,6 +16011,7 @@ paths:
|
|
|
15865
16011
|
maxItems: 50
|
|
15866
16012
|
title: Domains
|
|
15867
16013
|
type: array
|
|
16014
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15868
16015
|
responses:
|
|
15869
16016
|
'200':
|
|
15870
16017
|
content:
|
|
@@ -15928,6 +16075,7 @@ paths:
|
|
|
15928
16075
|
maxItems: 1000
|
|
15929
16076
|
title: Domains
|
|
15930
16077
|
type: array
|
|
16078
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15931
16079
|
responses:
|
|
15932
16080
|
'200':
|
|
15933
16081
|
content:
|
|
@@ -15972,6 +16120,8 @@ paths:
|
|
|
15972
16120
|
description: Stream domain availability results using Server-Sent Events (SSE)
|
|
15973
16121
|
until the `done` event is received.
|
|
15974
16122
|
operationId: stream_availability_post_v1_availability_stream_post
|
|
16123
|
+
parameters:
|
|
16124
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
15975
16125
|
requestBody:
|
|
15976
16126
|
content:
|
|
15977
16127
|
application/json:
|
|
@@ -16165,6 +16315,7 @@ paths:
|
|
|
16165
16315
|
description: Include additional data in the response. Can be specified multiple
|
|
16166
16316
|
times.
|
|
16167
16317
|
title: Include
|
|
16318
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16168
16319
|
responses:
|
|
16169
16320
|
'200':
|
|
16170
16321
|
content:
|
|
@@ -16189,6 +16340,8 @@ paths:
|
|
|
16189
16340
|
post:
|
|
16190
16341
|
description: Create a new contact object to use for domain registration
|
|
16191
16342
|
operationId: create_contact_v1_contacts_post
|
|
16343
|
+
parameters:
|
|
16344
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16192
16345
|
requestBody:
|
|
16193
16346
|
content:
|
|
16194
16347
|
application/json:
|
|
@@ -16265,6 +16418,7 @@ paths:
|
|
|
16265
16418
|
- type: string
|
|
16266
16419
|
- type: 'null'
|
|
16267
16420
|
title: Label
|
|
16421
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16268
16422
|
responses:
|
|
16269
16423
|
'200':
|
|
16270
16424
|
content:
|
|
@@ -16288,6 +16442,8 @@ paths:
|
|
|
16288
16442
|
- contacts:read
|
|
16289
16443
|
post:
|
|
16290
16444
|
operationId: create_attribute_set_v1_contacts_attribute_sets_post
|
|
16445
|
+
parameters:
|
|
16446
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16291
16447
|
requestBody:
|
|
16292
16448
|
content:
|
|
16293
16449
|
application/json:
|
|
@@ -16344,6 +16500,7 @@ paths:
|
|
|
16344
16500
|
title: Contact Attribute Set Id
|
|
16345
16501
|
type: string
|
|
16346
16502
|
x-typeid-prefix: contact_attribute_set
|
|
16503
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16347
16504
|
responses:
|
|
16348
16505
|
'204':
|
|
16349
16506
|
description: Successful Response
|
|
@@ -16388,6 +16545,7 @@ paths:
|
|
|
16388
16545
|
title: Contact Attribute Set Id
|
|
16389
16546
|
type: string
|
|
16390
16547
|
x-typeid-prefix: contact_attribute_set
|
|
16548
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16391
16549
|
responses:
|
|
16392
16550
|
'200':
|
|
16393
16551
|
content:
|
|
@@ -16436,6 +16594,7 @@ paths:
|
|
|
16436
16594
|
title: Contact Attribute Set Id
|
|
16437
16595
|
type: string
|
|
16438
16596
|
x-typeid-prefix: contact_attribute_set
|
|
16597
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16439
16598
|
requestBody:
|
|
16440
16599
|
content:
|
|
16441
16600
|
application/json:
|
|
@@ -16500,6 +16659,7 @@ paths:
|
|
|
16500
16659
|
schema:
|
|
16501
16660
|
title: Token
|
|
16502
16661
|
type: string
|
|
16662
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16503
16663
|
responses:
|
|
16504
16664
|
'200':
|
|
16505
16665
|
content:
|
|
@@ -16550,6 +16710,7 @@ paths:
|
|
|
16550
16710
|
schema:
|
|
16551
16711
|
title: Token
|
|
16552
16712
|
type: string
|
|
16713
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16553
16714
|
responses:
|
|
16554
16715
|
'204':
|
|
16555
16716
|
description: Successful Response
|
|
@@ -16612,6 +16773,7 @@ paths:
|
|
|
16612
16773
|
schema:
|
|
16613
16774
|
title: Token
|
|
16614
16775
|
type: string
|
|
16776
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16615
16777
|
responses:
|
|
16616
16778
|
'200':
|
|
16617
16779
|
content:
|
|
@@ -16644,6 +16806,7 @@ paths:
|
|
|
16644
16806
|
title: Contact Id
|
|
16645
16807
|
type: string
|
|
16646
16808
|
x-typeid-prefix: contact
|
|
16809
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16647
16810
|
responses:
|
|
16648
16811
|
'204':
|
|
16649
16812
|
description: Successful Response
|
|
@@ -16710,6 +16873,7 @@ paths:
|
|
|
16710
16873
|
type: array
|
|
16711
16874
|
- type: 'null'
|
|
16712
16875
|
title: Include
|
|
16876
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16713
16877
|
responses:
|
|
16714
16878
|
'200':
|
|
16715
16879
|
content:
|
|
@@ -16770,6 +16934,7 @@ paths:
|
|
|
16770
16934
|
title: Contact Attribute Set Id
|
|
16771
16935
|
type: string
|
|
16772
16936
|
x-typeid-prefix: contact_attribute_set
|
|
16937
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16773
16938
|
responses:
|
|
16774
16939
|
'200':
|
|
16775
16940
|
content:
|
|
@@ -16844,6 +17009,7 @@ paths:
|
|
|
16844
17009
|
title: Contact Id
|
|
16845
17010
|
type: string
|
|
16846
17011
|
x-typeid-prefix: contact
|
|
17012
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16847
17013
|
responses:
|
|
16848
17014
|
'204':
|
|
16849
17015
|
description: Successful Response
|
|
@@ -16900,6 +17066,7 @@ paths:
|
|
|
16900
17066
|
title: Contact Id
|
|
16901
17067
|
type: string
|
|
16902
17068
|
x-typeid-prefix: contact
|
|
17069
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16903
17070
|
responses:
|
|
16904
17071
|
'200':
|
|
16905
17072
|
content:
|
|
@@ -16965,6 +17132,7 @@ paths:
|
|
|
16965
17132
|
required: true
|
|
16966
17133
|
schema:
|
|
16967
17134
|
$ref: '#/components/schemas/VerificationType'
|
|
17135
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
16968
17136
|
responses:
|
|
16969
17137
|
'201':
|
|
16970
17138
|
content:
|
|
@@ -17047,6 +17215,7 @@ paths:
|
|
|
17047
17215
|
schema:
|
|
17048
17216
|
title: Token
|
|
17049
17217
|
type: string
|
|
17218
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
17050
17219
|
responses:
|
|
17051
17220
|
'204':
|
|
17052
17221
|
description: Successful Response
|
|
@@ -17134,6 +17303,7 @@ paths:
|
|
|
17134
17303
|
title: Contact Id
|
|
17135
17304
|
type: string
|
|
17136
17305
|
x-typeid-prefix: contact
|
|
17306
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
17137
17307
|
responses:
|
|
17138
17308
|
'200':
|
|
17139
17309
|
content:
|
|
@@ -17209,6 +17379,7 @@ paths:
|
|
|
17209
17379
|
title: Contact Id
|
|
17210
17380
|
type: string
|
|
17211
17381
|
x-typeid-prefix: contact
|
|
17382
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
17212
17383
|
requestBody:
|
|
17213
17384
|
content:
|
|
17214
17385
|
application/json:
|
|
@@ -17439,6 +17610,7 @@ paths:
|
|
|
17439
17610
|
description: Include additional data in the response. Can be specified multiple
|
|
17440
17611
|
times.
|
|
17441
17612
|
title: Include
|
|
17613
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
17442
17614
|
responses:
|
|
17443
17615
|
'200':
|
|
17444
17616
|
content:
|
|
@@ -17502,6 +17674,8 @@ paths:
|
|
|
17502
17674
|
- dns:read
|
|
17503
17675
|
post:
|
|
17504
17676
|
operationId: create_zone_v1_dns_post
|
|
17677
|
+
parameters:
|
|
17678
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
17505
17679
|
requestBody:
|
|
17506
17680
|
content:
|
|
17507
17681
|
application/json:
|
|
@@ -17798,6 +17972,7 @@ paths:
|
|
|
17798
17972
|
schema:
|
|
17799
17973
|
$ref: '#/components/schemas/SortOrder'
|
|
17800
17974
|
default: desc
|
|
17975
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
17801
17976
|
responses:
|
|
17802
17977
|
'200':
|
|
17803
17978
|
content:
|
|
@@ -17919,6 +18094,7 @@ paths:
|
|
|
17919
18094
|
schema:
|
|
17920
18095
|
$ref: '#/components/schemas/SortOrder'
|
|
17921
18096
|
default: desc
|
|
18097
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
17922
18098
|
responses:
|
|
17923
18099
|
'200':
|
|
17924
18100
|
content:
|
|
@@ -17967,6 +18143,8 @@ paths:
|
|
|
17967
18143
|
/v1/dns/summary:
|
|
17968
18144
|
get:
|
|
17969
18145
|
operationId: get_zones_summary_v1_dns_summary_get
|
|
18146
|
+
parameters:
|
|
18147
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
17970
18148
|
responses:
|
|
17971
18149
|
'200':
|
|
17972
18150
|
content:
|
|
@@ -18009,6 +18187,7 @@ paths:
|
|
|
18009
18187
|
description: DNS zone name (trailing dot optional)
|
|
18010
18188
|
title: Zone Name
|
|
18011
18189
|
type: string
|
|
18190
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
18012
18191
|
responses:
|
|
18013
18192
|
'204':
|
|
18014
18193
|
description: Successful Response
|
|
@@ -18047,6 +18226,7 @@ paths:
|
|
|
18047
18226
|
type: array
|
|
18048
18227
|
- type: 'null'
|
|
18049
18228
|
title: Include
|
|
18229
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
18050
18230
|
responses:
|
|
18051
18231
|
'200':
|
|
18052
18232
|
content:
|
|
@@ -18080,6 +18260,7 @@ paths:
|
|
|
18080
18260
|
description: DNS zone name (trailing dot optional)
|
|
18081
18261
|
title: Zone Name
|
|
18082
18262
|
type: string
|
|
18263
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
18083
18264
|
responses:
|
|
18084
18265
|
'200':
|
|
18085
18266
|
content:
|
|
@@ -18168,6 +18349,7 @@ paths:
|
|
|
18168
18349
|
description: DNS zone name (trailing dot optional)
|
|
18169
18350
|
title: Zone Name
|
|
18170
18351
|
type: string
|
|
18352
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
18171
18353
|
responses:
|
|
18172
18354
|
'200':
|
|
18173
18355
|
content:
|
|
@@ -18258,6 +18440,7 @@ paths:
|
|
|
18258
18440
|
description: DNS zone name (trailing dot optional)
|
|
18259
18441
|
title: Zone Name
|
|
18260
18442
|
type: string
|
|
18443
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
18261
18444
|
responses:
|
|
18262
18445
|
'200':
|
|
18263
18446
|
content:
|
|
@@ -18343,6 +18526,7 @@ paths:
|
|
|
18343
18526
|
description: DNS zone name (trailing dot optional)
|
|
18344
18527
|
title: Zone Name
|
|
18345
18528
|
type: string
|
|
18529
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
18346
18530
|
responses:
|
|
18347
18531
|
'200':
|
|
18348
18532
|
content:
|
|
@@ -18400,6 +18584,7 @@ paths:
|
|
|
18400
18584
|
description: DNS zone name (trailing dot optional)
|
|
18401
18585
|
title: Zone Name
|
|
18402
18586
|
type: string
|
|
18587
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
18403
18588
|
requestBody:
|
|
18404
18589
|
content:
|
|
18405
18590
|
application/json:
|
|
@@ -18501,6 +18686,7 @@ paths:
|
|
|
18501
18686
|
description: DNS zone name (trailing dot optional)
|
|
18502
18687
|
title: Zone Name
|
|
18503
18688
|
type: string
|
|
18689
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
18504
18690
|
requestBody:
|
|
18505
18691
|
content:
|
|
18506
18692
|
application/json:
|
|
@@ -18647,6 +18833,7 @@ paths:
|
|
|
18647
18833
|
description: DNS zone name (trailing dot optional)
|
|
18648
18834
|
title: Zone Name
|
|
18649
18835
|
type: string
|
|
18836
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
18650
18837
|
requestBody:
|
|
18651
18838
|
content:
|
|
18652
18839
|
application/json:
|
|
@@ -18782,6 +18969,7 @@ paths:
|
|
|
18782
18969
|
description: DNS zone name (trailing dot optional)
|
|
18783
18970
|
title: Zone Name
|
|
18784
18971
|
type: string
|
|
18972
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
18785
18973
|
requestBody:
|
|
18786
18974
|
content:
|
|
18787
18975
|
application/json:
|
|
@@ -18865,6 +19053,7 @@ paths:
|
|
|
18865
19053
|
schema:
|
|
18866
19054
|
$ref: '#/components/schemas/SortOrder'
|
|
18867
19055
|
default: desc
|
|
19056
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
18868
19057
|
responses:
|
|
18869
19058
|
'200':
|
|
18870
19059
|
content:
|
|
@@ -19012,6 +19201,8 @@ paths:
|
|
|
19012
19201
|
and protocols. Raises an error if the domain forward or domain forward set
|
|
19013
19202
|
does not exist.
|
|
19014
19203
|
operationId: patch_redirects_v1_domain_forwards_patch
|
|
19204
|
+
parameters:
|
|
19205
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
19015
19206
|
requestBody:
|
|
19016
19207
|
content:
|
|
19017
19208
|
application/json:
|
|
@@ -19075,6 +19266,8 @@ paths:
|
|
|
19075
19266
|
description: Creates a new domain forward configuration. Wildcard forwards can
|
|
19076
19267
|
be created by using *.hostname (e.g., *.example.com).
|
|
19077
19268
|
operationId: create_domain_forward_v2_v1_domain_forwards_post
|
|
19269
|
+
parameters:
|
|
19270
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
19078
19271
|
requestBody:
|
|
19079
19272
|
content:
|
|
19080
19273
|
application/json:
|
|
@@ -19297,6 +19490,7 @@ paths:
|
|
|
19297
19490
|
description: 'Exclude platform values: Unknown, Bot'
|
|
19298
19491
|
title: Exclude Bots
|
|
19299
19492
|
type: boolean
|
|
19493
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
19300
19494
|
responses:
|
|
19301
19495
|
'200':
|
|
19302
19496
|
content:
|
|
@@ -19430,6 +19624,7 @@ paths:
|
|
|
19430
19624
|
description: 'Exclude platform values: Unknown, Bot'
|
|
19431
19625
|
title: Exclude Bots
|
|
19432
19626
|
type: boolean
|
|
19627
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
19433
19628
|
responses:
|
|
19434
19629
|
'200':
|
|
19435
19630
|
content:
|
|
@@ -19586,6 +19781,7 @@ paths:
|
|
|
19586
19781
|
description: 'Exclude platform values: Unknown, Bot'
|
|
19587
19782
|
title: Exclude Bots
|
|
19588
19783
|
type: boolean
|
|
19784
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
19589
19785
|
responses:
|
|
19590
19786
|
'200':
|
|
19591
19787
|
content:
|
|
@@ -19735,6 +19931,7 @@ paths:
|
|
|
19735
19931
|
description: 'Exclude platform values: Unknown, Bot'
|
|
19736
19932
|
title: Exclude Bots
|
|
19737
19933
|
type: boolean
|
|
19934
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
19738
19935
|
responses:
|
|
19739
19936
|
'200':
|
|
19740
19937
|
content:
|
|
@@ -19889,6 +20086,7 @@ paths:
|
|
|
19889
20086
|
description: 'Exclude platform values: Unknown, Bot'
|
|
19890
20087
|
title: Exclude Bots
|
|
19891
20088
|
type: boolean
|
|
20089
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
19892
20090
|
responses:
|
|
19893
20091
|
'200':
|
|
19894
20092
|
content:
|
|
@@ -20045,6 +20243,7 @@ paths:
|
|
|
20045
20243
|
description: 'Exclude platform values: Unknown, Bot'
|
|
20046
20244
|
title: Exclude Bots
|
|
20047
20245
|
type: boolean
|
|
20246
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
20048
20247
|
responses:
|
|
20049
20248
|
'200':
|
|
20050
20249
|
content:
|
|
@@ -20187,6 +20386,7 @@ paths:
|
|
|
20187
20386
|
description: 'Exclude platform values: Unknown, Bot'
|
|
20188
20387
|
title: Exclude Bots
|
|
20189
20388
|
type: boolean
|
|
20389
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
20190
20390
|
responses:
|
|
20191
20391
|
'200':
|
|
20192
20392
|
content:
|
|
@@ -20375,6 +20575,7 @@ paths:
|
|
|
20375
20575
|
description: 'Exclude platform values: Unknown, Bot'
|
|
20376
20576
|
title: Exclude Bots
|
|
20377
20577
|
type: boolean
|
|
20578
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
20378
20579
|
responses:
|
|
20379
20580
|
'200':
|
|
20380
20581
|
content:
|
|
@@ -20531,6 +20732,7 @@ paths:
|
|
|
20531
20732
|
description: 'Exclude platform values: Unknown, Bot'
|
|
20532
20733
|
title: Exclude Bots
|
|
20533
20734
|
type: boolean
|
|
20735
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
20534
20736
|
responses:
|
|
20535
20737
|
'200':
|
|
20536
20738
|
content:
|
|
@@ -20656,6 +20858,7 @@ paths:
|
|
|
20656
20858
|
description: Hostname
|
|
20657
20859
|
title: Hostname
|
|
20658
20860
|
type: string
|
|
20861
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
20659
20862
|
responses:
|
|
20660
20863
|
'204':
|
|
20661
20864
|
description: Domain forward deleted successfully. No content returned.
|
|
@@ -20721,6 +20924,7 @@ paths:
|
|
|
20721
20924
|
description: Hostname
|
|
20722
20925
|
title: Hostname
|
|
20723
20926
|
type: string
|
|
20927
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
20724
20928
|
responses:
|
|
20725
20929
|
'200':
|
|
20726
20930
|
content:
|
|
@@ -20826,6 +21030,7 @@ paths:
|
|
|
20826
21030
|
description: Hostname
|
|
20827
21031
|
title: Hostname
|
|
20828
21032
|
type: string
|
|
21033
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
20829
21034
|
requestBody:
|
|
20830
21035
|
content:
|
|
20831
21036
|
application/json:
|
|
@@ -20933,6 +21138,7 @@ paths:
|
|
|
20933
21138
|
description: Hostname
|
|
20934
21139
|
title: Hostname
|
|
20935
21140
|
type: string
|
|
21141
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
20936
21142
|
responses:
|
|
20937
21143
|
'204':
|
|
20938
21144
|
description: Domain forward disabled successfully. DNS records have been
|
|
@@ -20988,6 +21194,7 @@ paths:
|
|
|
20988
21194
|
description: Hostname
|
|
20989
21195
|
title: Hostname
|
|
20990
21196
|
type: string
|
|
21197
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
20991
21198
|
responses:
|
|
20992
21199
|
'204':
|
|
20993
21200
|
description: Domain forward enabled successfully. DNS records have been
|
|
@@ -21048,6 +21255,7 @@ paths:
|
|
|
21048
21255
|
description: Hostname
|
|
21049
21256
|
title: Hostname
|
|
21050
21257
|
type: string
|
|
21258
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
21051
21259
|
responses:
|
|
21052
21260
|
'204':
|
|
21053
21261
|
description: Domain forward protocol set deleted successfully. No content
|
|
@@ -21120,6 +21328,7 @@ paths:
|
|
|
21120
21328
|
description: Hostname
|
|
21121
21329
|
title: Hostname
|
|
21122
21330
|
type: string
|
|
21331
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
21123
21332
|
responses:
|
|
21124
21333
|
'200':
|
|
21125
21334
|
content:
|
|
@@ -21231,6 +21440,7 @@ paths:
|
|
|
21231
21440
|
description: Hostname
|
|
21232
21441
|
title: Hostname
|
|
21233
21442
|
type: string
|
|
21443
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
21234
21444
|
requestBody:
|
|
21235
21445
|
content:
|
|
21236
21446
|
application/json:
|
|
@@ -21367,6 +21577,7 @@ paths:
|
|
|
21367
21577
|
- type: 'null'
|
|
21368
21578
|
description: Whether to include premium domains in the suggestions
|
|
21369
21579
|
title: Premium
|
|
21580
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
21370
21581
|
responses:
|
|
21371
21582
|
'200':
|
|
21372
21583
|
content:
|
|
@@ -21663,6 +21874,7 @@ paths:
|
|
|
21663
21874
|
description: Include additional data in the response. Can be specified multiple
|
|
21664
21875
|
times.
|
|
21665
21876
|
title: Include
|
|
21877
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
21666
21878
|
responses:
|
|
21667
21879
|
'200':
|
|
21668
21880
|
content:
|
|
@@ -21698,6 +21910,8 @@ paths:
|
|
|
21698
21910
|
must be supplied to acknowledge the corresponding claims notice. See the [Trademarked
|
|
21699
21911
|
domains](/products/domains/trademarked-domains) guide for the full workflow.'
|
|
21700
21912
|
operationId: create_domain_v1_domains_post
|
|
21913
|
+
parameters:
|
|
21914
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
21701
21915
|
requestBody:
|
|
21702
21916
|
content:
|
|
21703
21917
|
application/json:
|
|
@@ -21871,6 +22085,7 @@ paths:
|
|
|
21871
22085
|
type: string
|
|
21872
22086
|
title: Domains
|
|
21873
22087
|
type: array
|
|
22088
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
21874
22089
|
responses:
|
|
21875
22090
|
'200':
|
|
21876
22091
|
content:
|
|
@@ -21901,6 +22116,8 @@ paths:
|
|
|
21901
22116
|
See the [Trademarked domains](/products/domains/trademarked-domains) guide
|
|
21902
22117
|
for the full workflow.
|
|
21903
22118
|
operationId: get_claims_notices_v1_domains_claims_notices_post
|
|
22119
|
+
parameters:
|
|
22120
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
21904
22121
|
requestBody:
|
|
21905
22122
|
content:
|
|
21906
22123
|
application/json:
|
|
@@ -21958,6 +22175,8 @@ paths:
|
|
|
21958
22175
|
description: Retrieves a summary of domains including counts by status, TLD,
|
|
21959
22176
|
and expiration timeframes
|
|
21960
22177
|
operationId: get_domain_summary_v1_domains_summary_get
|
|
22178
|
+
parameters:
|
|
22179
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
21961
22180
|
responses:
|
|
21962
22181
|
'200':
|
|
21963
22182
|
content:
|
|
@@ -21996,6 +22215,7 @@ paths:
|
|
|
21996
22215
|
x-typeid-prefix: domain
|
|
21997
22216
|
- type: string
|
|
21998
22217
|
title: Domain Reference
|
|
22218
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
21999
22219
|
requestBody:
|
|
22000
22220
|
content:
|
|
22001
22221
|
application/json:
|
|
@@ -22054,6 +22274,7 @@ paths:
|
|
|
22054
22274
|
x-typeid-prefix: domain
|
|
22055
22275
|
- type: string
|
|
22056
22276
|
title: Domain Reference
|
|
22277
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22057
22278
|
responses:
|
|
22058
22279
|
'200':
|
|
22059
22280
|
content:
|
|
@@ -22120,6 +22341,7 @@ paths:
|
|
|
22120
22341
|
x-typeid-prefix: domain
|
|
22121
22342
|
- type: string
|
|
22122
22343
|
title: Domain Reference
|
|
22344
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22123
22345
|
requestBody:
|
|
22124
22346
|
content:
|
|
22125
22347
|
application/json:
|
|
@@ -22178,6 +22400,7 @@ paths:
|
|
|
22178
22400
|
x-typeid-prefix: domain
|
|
22179
22401
|
- type: string
|
|
22180
22402
|
title: Domain Reference
|
|
22403
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22181
22404
|
responses:
|
|
22182
22405
|
'200':
|
|
22183
22406
|
content:
|
|
@@ -22244,6 +22467,7 @@ paths:
|
|
|
22244
22467
|
x-typeid-prefix: domain
|
|
22245
22468
|
- type: string
|
|
22246
22469
|
title: Domain Reference
|
|
22470
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22247
22471
|
responses:
|
|
22248
22472
|
'200':
|
|
22249
22473
|
content:
|
|
@@ -22293,6 +22517,267 @@ paths:
|
|
|
22293
22517
|
- domain_tld_specific
|
|
22294
22518
|
x-required-permissions:
|
|
22295
22519
|
- domains:manage
|
|
22520
|
+
/v1/domains/tld-specific/no/applicant-declaration:
|
|
22521
|
+
get:
|
|
22522
|
+
operationId: get_norid_declaration_by_token_v1_domains_tld_specific_no_applicant_declaration_get
|
|
22523
|
+
parameters:
|
|
22524
|
+
- in: query
|
|
22525
|
+
name: token
|
|
22526
|
+
required: true
|
|
22527
|
+
schema:
|
|
22528
|
+
title: Token
|
|
22529
|
+
type: string
|
|
22530
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22531
|
+
responses:
|
|
22532
|
+
'200':
|
|
22533
|
+
content:
|
|
22534
|
+
application/json:
|
|
22535
|
+
schema:
|
|
22536
|
+
$ref: '#/components/schemas/NorIdDeclarationResponse'
|
|
22537
|
+
description: Successful Response
|
|
22538
|
+
'404':
|
|
22539
|
+
content:
|
|
22540
|
+
application/problem+json:
|
|
22541
|
+
example:
|
|
22542
|
+
code: ERROR_NORID_DECLARATION_NOT_FOUND
|
|
22543
|
+
detail: Additional error context.
|
|
22544
|
+
status: 404
|
|
22545
|
+
title: Domain Management Error
|
|
22546
|
+
type: nor-id-declaration-not-found
|
|
22547
|
+
schema:
|
|
22548
|
+
$ref: '#/components/schemas/Problem'
|
|
22549
|
+
description: Not Found
|
|
22550
|
+
'422':
|
|
22551
|
+
content:
|
|
22552
|
+
application/problem+json:
|
|
22553
|
+
schema:
|
|
22554
|
+
$ref: '#/components/schemas/HTTPValidationError'
|
|
22555
|
+
description: Validation Error
|
|
22556
|
+
summary: Retrieve the .no applicant declaration by token
|
|
22557
|
+
tags:
|
|
22558
|
+
- domain
|
|
22559
|
+
- domain_tld_specific
|
|
22560
|
+
put:
|
|
22561
|
+
description: Records the applicant declaration signature (`acceptName` + `acceptDate`)
|
|
22562
|
+
and queues the actual registration at Norid.
|
|
22563
|
+
operationId: confirm_norid_declaration_by_token_v1_domains_tld_specific_no_applicant_declaration_put
|
|
22564
|
+
parameters:
|
|
22565
|
+
- in: query
|
|
22566
|
+
name: token
|
|
22567
|
+
required: true
|
|
22568
|
+
schema:
|
|
22569
|
+
title: Token
|
|
22570
|
+
type: string
|
|
22571
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22572
|
+
requestBody:
|
|
22573
|
+
content:
|
|
22574
|
+
application/json:
|
|
22575
|
+
schema:
|
|
22576
|
+
$ref: '#/components/schemas/NorIdDeclarationConfirmRequest'
|
|
22577
|
+
required: true
|
|
22578
|
+
responses:
|
|
22579
|
+
'204':
|
|
22580
|
+
description: Successful Response
|
|
22581
|
+
'400':
|
|
22582
|
+
content:
|
|
22583
|
+
application/problem+json:
|
|
22584
|
+
example:
|
|
22585
|
+
code: ERROR_NORID_DECLARATION_EXPIRED
|
|
22586
|
+
detail: The applicant declaration request has expired
|
|
22587
|
+
domain_name: Additional error context.
|
|
22588
|
+
status: 400
|
|
22589
|
+
title: Domain Management Error
|
|
22590
|
+
type: nor-id-declaration-expired
|
|
22591
|
+
schema:
|
|
22592
|
+
$ref: '#/components/schemas/Problem'
|
|
22593
|
+
description: Bad Request
|
|
22594
|
+
'404':
|
|
22595
|
+
content:
|
|
22596
|
+
application/problem+json:
|
|
22597
|
+
example:
|
|
22598
|
+
code: ERROR_NORID_DECLARATION_NOT_FOUND
|
|
22599
|
+
detail: Additional error context.
|
|
22600
|
+
status: 404
|
|
22601
|
+
title: Domain Management Error
|
|
22602
|
+
type: nor-id-declaration-not-found
|
|
22603
|
+
schema:
|
|
22604
|
+
$ref: '#/components/schemas/Problem'
|
|
22605
|
+
description: Not Found
|
|
22606
|
+
'409':
|
|
22607
|
+
content:
|
|
22608
|
+
application/problem+json:
|
|
22609
|
+
example:
|
|
22610
|
+
code: ERROR_NORID_DECLARATION_STATE
|
|
22611
|
+
detail: The applicant declaration is not in a valid state
|
|
22612
|
+
domain_name: Additional error context.
|
|
22613
|
+
status: 409
|
|
22614
|
+
title: Domain Management Error
|
|
22615
|
+
type: nor-id-declaration-state
|
|
22616
|
+
schema:
|
|
22617
|
+
$ref: '#/components/schemas/Problem'
|
|
22618
|
+
description: Conflict
|
|
22619
|
+
'422':
|
|
22620
|
+
content:
|
|
22621
|
+
application/problem+json:
|
|
22622
|
+
schema:
|
|
22623
|
+
$ref: '#/components/schemas/HTTPValidationError'
|
|
22624
|
+
description: Validation Error
|
|
22625
|
+
summary: Sign the .no applicant declaration with token
|
|
22626
|
+
tags:
|
|
22627
|
+
- domain
|
|
22628
|
+
- domain_tld_specific
|
|
22629
|
+
/v1/domains/tld-specific/no/{domain_reference}/applicant-declaration:
|
|
22630
|
+
post:
|
|
22631
|
+
description: Records the applicant declaration signature collected by the registrar
|
|
22632
|
+
(e.g. via Norid's own signing tool) and queues the actual registration at
|
|
22633
|
+
Norid, without the registrant email round-trip.
|
|
22634
|
+
operationId: submit_norid_declaration_v1_domains_tld_specific_no__domain_reference__applicant_declaration_post
|
|
22635
|
+
parameters:
|
|
22636
|
+
- in: path
|
|
22637
|
+
name: domain_reference
|
|
22638
|
+
required: true
|
|
22639
|
+
schema:
|
|
22640
|
+
anyOf:
|
|
22641
|
+
- examples:
|
|
22642
|
+
- domain_01h45ytscbebyvny4gc8cr8ma2
|
|
22643
|
+
format: typeid
|
|
22644
|
+
pattern: ^domain_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
22645
|
+
type: string
|
|
22646
|
+
x-typeid-prefix: domain
|
|
22647
|
+
- type: string
|
|
22648
|
+
title: Domain Reference
|
|
22649
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22650
|
+
requestBody:
|
|
22651
|
+
content:
|
|
22652
|
+
application/json:
|
|
22653
|
+
schema:
|
|
22654
|
+
$ref: '#/components/schemas/NorIdResellerDeclarationRequest'
|
|
22655
|
+
required: true
|
|
22656
|
+
responses:
|
|
22657
|
+
'202':
|
|
22658
|
+
content:
|
|
22659
|
+
application/json:
|
|
22660
|
+
schema:
|
|
22661
|
+
$ref: '#/components/schemas/NorIdDeclarationResponse'
|
|
22662
|
+
description: Successful Response
|
|
22663
|
+
'400':
|
|
22664
|
+
content:
|
|
22665
|
+
application/problem+json:
|
|
22666
|
+
example:
|
|
22667
|
+
code: ERROR_NORID_DECLARATION_EXPIRED
|
|
22668
|
+
detail: The applicant declaration request has expired
|
|
22669
|
+
domain_name: Additional error context.
|
|
22670
|
+
status: 400
|
|
22671
|
+
title: Domain Management Error
|
|
22672
|
+
type: nor-id-declaration-expired
|
|
22673
|
+
schema:
|
|
22674
|
+
$ref: '#/components/schemas/Problem'
|
|
22675
|
+
description: Bad Request
|
|
22676
|
+
'404':
|
|
22677
|
+
content:
|
|
22678
|
+
application/problem+json:
|
|
22679
|
+
examples:
|
|
22680
|
+
Domain Management Error:
|
|
22681
|
+
value:
|
|
22682
|
+
code: ERROR_NORID_DECLARATION_NOT_FOUND
|
|
22683
|
+
detail: Additional error context.
|
|
22684
|
+
status: 404
|
|
22685
|
+
title: Domain Management Error
|
|
22686
|
+
type: nor-id-declaration-not-found
|
|
22687
|
+
schema:
|
|
22688
|
+
$ref: '#/components/schemas/Problem'
|
|
22689
|
+
description: Not Found
|
|
22690
|
+
'409':
|
|
22691
|
+
content:
|
|
22692
|
+
application/problem+json:
|
|
22693
|
+
example:
|
|
22694
|
+
code: ERROR_NORID_DECLARATION_STATE
|
|
22695
|
+
detail: The applicant declaration is not in a valid state
|
|
22696
|
+
domain_name: Additional error context.
|
|
22697
|
+
status: 409
|
|
22698
|
+
title: Domain Management Error
|
|
22699
|
+
type: nor-id-declaration-state
|
|
22700
|
+
schema:
|
|
22701
|
+
$ref: '#/components/schemas/Problem'
|
|
22702
|
+
description: Conflict
|
|
22703
|
+
'422':
|
|
22704
|
+
content:
|
|
22705
|
+
application/problem+json:
|
|
22706
|
+
schema:
|
|
22707
|
+
$ref: '#/components/schemas/HTTPValidationError'
|
|
22708
|
+
description: Validation Error
|
|
22709
|
+
security:
|
|
22710
|
+
- OAuth2PasswordBearer: []
|
|
22711
|
+
- APIKeyHeader: []
|
|
22712
|
+
summary: Submit the .no applicant declaration on behalf of the subscriber
|
|
22713
|
+
tags:
|
|
22714
|
+
- domain
|
|
22715
|
+
- domain_tld_specific
|
|
22716
|
+
x-required-permissions:
|
|
22717
|
+
- domains:manage
|
|
22718
|
+
/v1/domains/tld-specific/no/{domain_reference}/resend-declaration-email:
|
|
22719
|
+
post:
|
|
22720
|
+
operationId: resend_norid_declaration_email_v1_domains_tld_specific_no__domain_reference__resend_declaration_email_post
|
|
22721
|
+
parameters:
|
|
22722
|
+
- in: path
|
|
22723
|
+
name: domain_reference
|
|
22724
|
+
required: true
|
|
22725
|
+
schema:
|
|
22726
|
+
anyOf:
|
|
22727
|
+
- examples:
|
|
22728
|
+
- domain_01h45ytscbebyvny4gc8cr8ma2
|
|
22729
|
+
format: typeid
|
|
22730
|
+
pattern: ^domain_[0-7][0-9a-hjkmnpq-tv-z]{25}$
|
|
22731
|
+
type: string
|
|
22732
|
+
x-typeid-prefix: domain
|
|
22733
|
+
- type: string
|
|
22734
|
+
title: Domain Reference
|
|
22735
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22736
|
+
responses:
|
|
22737
|
+
'204':
|
|
22738
|
+
description: Successful Response
|
|
22739
|
+
'404':
|
|
22740
|
+
content:
|
|
22741
|
+
application/problem+json:
|
|
22742
|
+
examples:
|
|
22743
|
+
Domain Management Error:
|
|
22744
|
+
value:
|
|
22745
|
+
code: ERROR_NORID_DECLARATION_NOT_FOUND
|
|
22746
|
+
detail: Additional error context.
|
|
22747
|
+
status: 404
|
|
22748
|
+
title: Domain Management Error
|
|
22749
|
+
type: nor-id-declaration-not-found
|
|
22750
|
+
schema:
|
|
22751
|
+
$ref: '#/components/schemas/Problem'
|
|
22752
|
+
description: Not Found
|
|
22753
|
+
'409':
|
|
22754
|
+
content:
|
|
22755
|
+
application/problem+json:
|
|
22756
|
+
example:
|
|
22757
|
+
code: ERROR_NORID_DECLARATION_STATE
|
|
22758
|
+
detail: The applicant declaration is not in a valid state
|
|
22759
|
+
domain_name: Additional error context.
|
|
22760
|
+
status: 409
|
|
22761
|
+
title: Domain Management Error
|
|
22762
|
+
type: nor-id-declaration-state
|
|
22763
|
+
schema:
|
|
22764
|
+
$ref: '#/components/schemas/Problem'
|
|
22765
|
+
description: Conflict
|
|
22766
|
+
'422':
|
|
22767
|
+
content:
|
|
22768
|
+
application/problem+json:
|
|
22769
|
+
schema:
|
|
22770
|
+
$ref: '#/components/schemas/HTTPValidationError'
|
|
22771
|
+
description: Validation Error
|
|
22772
|
+
security:
|
|
22773
|
+
- OAuth2PasswordBearer: []
|
|
22774
|
+
- APIKeyHeader: []
|
|
22775
|
+
summary: Resend the .no applicant declaration email to the registrant
|
|
22776
|
+
tags:
|
|
22777
|
+
- domain
|
|
22778
|
+
- domain_tld_specific
|
|
22779
|
+
x-required-permissions:
|
|
22780
|
+
- domains:manage
|
|
22296
22781
|
/v1/domains/transfer:
|
|
22297
22782
|
post:
|
|
22298
22783
|
description: 'Start the transfer process for a domain <br>
|
|
@@ -22301,6 +22786,8 @@ paths:
|
|
|
22301
22786
|
|
|
22302
22787
|
This process can take up to 5 days, until the transfer is approved'
|
|
22303
22788
|
operationId: transfer_domain_v1_domains_transfer_post
|
|
22789
|
+
parameters:
|
|
22790
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22304
22791
|
requestBody:
|
|
22305
22792
|
content:
|
|
22306
22793
|
application/json:
|
|
@@ -22459,6 +22946,7 @@ paths:
|
|
|
22459
22946
|
x-typeid-prefix: domain
|
|
22460
22947
|
- type: string
|
|
22461
22948
|
title: Domain Reference
|
|
22949
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22462
22950
|
responses:
|
|
22463
22951
|
'204':
|
|
22464
22952
|
description: Successful Response
|
|
@@ -22532,6 +23020,7 @@ paths:
|
|
|
22532
23020
|
- type: 'null'
|
|
22533
23021
|
description: Include additional data in the response.
|
|
22534
23022
|
title: Include
|
|
23023
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22535
23024
|
responses:
|
|
22536
23025
|
'200':
|
|
22537
23026
|
content:
|
|
@@ -22589,6 +23078,7 @@ paths:
|
|
|
22589
23078
|
x-typeid-prefix: domain
|
|
22590
23079
|
- type: string
|
|
22591
23080
|
title: Domain Reference
|
|
23081
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22592
23082
|
requestBody:
|
|
22593
23083
|
content:
|
|
22594
23084
|
application/json:
|
|
@@ -22657,6 +23147,7 @@ paths:
|
|
|
22657
23147
|
x-typeid-prefix: domain
|
|
22658
23148
|
- type: string
|
|
22659
23149
|
title: Domain Reference
|
|
23150
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22660
23151
|
responses:
|
|
22661
23152
|
'204':
|
|
22662
23153
|
description: Successful Response
|
|
@@ -22704,6 +23195,7 @@ paths:
|
|
|
22704
23195
|
x-typeid-prefix: domain
|
|
22705
23196
|
- type: string
|
|
22706
23197
|
title: Domain Reference
|
|
23198
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22707
23199
|
responses:
|
|
22708
23200
|
'200':
|
|
22709
23201
|
content:
|
|
@@ -22759,6 +23251,7 @@ paths:
|
|
|
22759
23251
|
x-typeid-prefix: domain
|
|
22760
23252
|
- type: string
|
|
22761
23253
|
title: Domain Reference
|
|
23254
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22762
23255
|
requestBody:
|
|
22763
23256
|
content:
|
|
22764
23257
|
application/json:
|
|
@@ -22829,6 +23322,7 @@ paths:
|
|
|
22829
23322
|
x-typeid-prefix: domain
|
|
22830
23323
|
- type: string
|
|
22831
23324
|
title: Domain Reference
|
|
23325
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22832
23326
|
responses:
|
|
22833
23327
|
'204':
|
|
22834
23328
|
description: Successful Response
|
|
@@ -22876,6 +23370,7 @@ paths:
|
|
|
22876
23370
|
x-typeid-prefix: domain
|
|
22877
23371
|
- type: string
|
|
22878
23372
|
title: Domain Reference
|
|
23373
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22879
23374
|
responses:
|
|
22880
23375
|
'200':
|
|
22881
23376
|
content:
|
|
@@ -22935,6 +23430,7 @@ paths:
|
|
|
22935
23430
|
x-typeid-prefix: domain
|
|
22936
23431
|
- type: string
|
|
22937
23432
|
title: Domain Reference
|
|
23433
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22938
23434
|
requestBody:
|
|
22939
23435
|
content:
|
|
22940
23436
|
application/json:
|
|
@@ -22979,6 +23475,7 @@ paths:
|
|
|
22979
23475
|
x-typeid-prefix: domain
|
|
22980
23476
|
- type: string
|
|
22981
23477
|
title: Domain Reference
|
|
23478
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
22982
23479
|
requestBody:
|
|
22983
23480
|
content:
|
|
22984
23481
|
application/json:
|
|
@@ -23025,6 +23522,7 @@ paths:
|
|
|
23025
23522
|
x-typeid-prefix: domain
|
|
23026
23523
|
- type: string
|
|
23027
23524
|
title: Domain Reference
|
|
23525
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23028
23526
|
responses:
|
|
23029
23527
|
'204':
|
|
23030
23528
|
description: Successful Response
|
|
@@ -23119,6 +23617,7 @@ paths:
|
|
|
23119
23617
|
schema:
|
|
23120
23618
|
$ref: '#/components/schemas/SortOrder'
|
|
23121
23619
|
default: desc
|
|
23620
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23122
23621
|
responses:
|
|
23123
23622
|
'200':
|
|
23124
23623
|
content:
|
|
@@ -23169,6 +23668,8 @@ paths:
|
|
|
23169
23668
|
Can be created enabled or disabled (default: disabled). Includes created_on
|
|
23170
23669
|
and updated_on timestamps.'
|
|
23171
23670
|
operationId: create_email_forward_v1_email_forwards_post
|
|
23671
|
+
parameters:
|
|
23672
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23172
23673
|
requestBody:
|
|
23173
23674
|
content:
|
|
23174
23675
|
application/json:
|
|
@@ -23326,6 +23827,7 @@ paths:
|
|
|
23326
23827
|
title: Email Forward Id
|
|
23327
23828
|
type: string
|
|
23328
23829
|
x-typeid-prefix: email_forward
|
|
23830
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23329
23831
|
responses:
|
|
23330
23832
|
'204':
|
|
23331
23833
|
description: Successful Response
|
|
@@ -23383,6 +23885,7 @@ paths:
|
|
|
23383
23885
|
title: Email Forward Id
|
|
23384
23886
|
type: string
|
|
23385
23887
|
x-typeid-prefix: email_forward
|
|
23888
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23386
23889
|
responses:
|
|
23387
23890
|
'200':
|
|
23388
23891
|
content:
|
|
@@ -23458,6 +23961,7 @@ paths:
|
|
|
23458
23961
|
title: Email Forward Id
|
|
23459
23962
|
type: string
|
|
23460
23963
|
x-typeid-prefix: email_forward
|
|
23964
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23461
23965
|
requestBody:
|
|
23462
23966
|
content:
|
|
23463
23967
|
application/json:
|
|
@@ -23595,6 +24099,7 @@ paths:
|
|
|
23595
24099
|
title: Alias Id
|
|
23596
24100
|
type: string
|
|
23597
24101
|
x-typeid-prefix: email_forward_alias
|
|
24102
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23598
24103
|
responses:
|
|
23599
24104
|
'204':
|
|
23600
24105
|
description: Successful Response
|
|
@@ -23676,6 +24181,7 @@ paths:
|
|
|
23676
24181
|
title: Alias Id
|
|
23677
24182
|
type: string
|
|
23678
24183
|
x-typeid-prefix: email_forward_alias
|
|
24184
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23679
24185
|
requestBody:
|
|
23680
24186
|
content:
|
|
23681
24187
|
application/json:
|
|
@@ -23758,6 +24264,7 @@ paths:
|
|
|
23758
24264
|
title: Email Forward Id
|
|
23759
24265
|
type: string
|
|
23760
24266
|
x-typeid-prefix: email_forward
|
|
24267
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23761
24268
|
responses:
|
|
23762
24269
|
'204':
|
|
23763
24270
|
description: Successful Response
|
|
@@ -23828,6 +24335,7 @@ paths:
|
|
|
23828
24335
|
title: Email Forward Id
|
|
23829
24336
|
type: string
|
|
23830
24337
|
x-typeid-prefix: email_forward
|
|
24338
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23831
24339
|
responses:
|
|
23832
24340
|
'204':
|
|
23833
24341
|
description: Successful Response
|
|
@@ -23916,6 +24424,7 @@ paths:
|
|
|
23916
24424
|
type: string
|
|
23917
24425
|
- type: 'null'
|
|
23918
24426
|
title: End Time
|
|
24427
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
23919
24428
|
responses:
|
|
23920
24429
|
'200':
|
|
23921
24430
|
content:
|
|
@@ -24048,6 +24557,7 @@ paths:
|
|
|
24048
24557
|
- type: 'null'
|
|
24049
24558
|
default: false
|
|
24050
24559
|
title: Acknowledged
|
|
24560
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24051
24561
|
responses:
|
|
24052
24562
|
'200':
|
|
24053
24563
|
content:
|
|
@@ -24097,6 +24607,7 @@ paths:
|
|
|
24097
24607
|
title: Event Id
|
|
24098
24608
|
type: string
|
|
24099
24609
|
x-typeid-prefix: event
|
|
24610
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24100
24611
|
responses:
|
|
24101
24612
|
'200':
|
|
24102
24613
|
content:
|
|
@@ -24158,6 +24669,7 @@ paths:
|
|
|
24158
24669
|
title: Event Id
|
|
24159
24670
|
type: string
|
|
24160
24671
|
x-typeid-prefix: event
|
|
24672
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24161
24673
|
responses:
|
|
24162
24674
|
'204':
|
|
24163
24675
|
description: Successful Response
|
|
@@ -24204,6 +24716,8 @@ paths:
|
|
|
24204
24716
|
post:
|
|
24205
24717
|
description: Create a new host object
|
|
24206
24718
|
operationId: create_host_v1_hosts_post
|
|
24719
|
+
parameters:
|
|
24720
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24207
24721
|
requestBody:
|
|
24208
24722
|
content:
|
|
24209
24723
|
application/json:
|
|
@@ -24307,6 +24821,7 @@ paths:
|
|
|
24307
24821
|
x-typeid-prefix: host
|
|
24308
24822
|
- type: string
|
|
24309
24823
|
title: Host Reference
|
|
24824
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24310
24825
|
responses:
|
|
24311
24826
|
'204':
|
|
24312
24827
|
description: Successful Response
|
|
@@ -24394,6 +24909,7 @@ paths:
|
|
|
24394
24909
|
x-typeid-prefix: host
|
|
24395
24910
|
- type: string
|
|
24396
24911
|
title: Host Reference
|
|
24912
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24397
24913
|
responses:
|
|
24398
24914
|
'200':
|
|
24399
24915
|
content:
|
|
@@ -24473,6 +24989,7 @@ paths:
|
|
|
24473
24989
|
x-typeid-prefix: host
|
|
24474
24990
|
- type: string
|
|
24475
24991
|
title: Host Reference
|
|
24992
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24476
24993
|
requestBody:
|
|
24477
24994
|
content:
|
|
24478
24995
|
application/json:
|
|
@@ -24556,6 +25073,7 @@ paths:
|
|
|
24556
25073
|
title: Job Id
|
|
24557
25074
|
type: string
|
|
24558
25075
|
x-typeid-prefix: job
|
|
25076
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24559
25077
|
responses:
|
|
24560
25078
|
'204':
|
|
24561
25079
|
description: Successful Response
|
|
@@ -24601,6 +25119,7 @@ paths:
|
|
|
24601
25119
|
title: Job Id
|
|
24602
25120
|
type: string
|
|
24603
25121
|
x-typeid-prefix: job
|
|
25122
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24604
25123
|
responses:
|
|
24605
25124
|
'200':
|
|
24606
25125
|
content:
|
|
@@ -24651,6 +25170,7 @@ paths:
|
|
|
24651
25170
|
title: Job Id
|
|
24652
25171
|
type: string
|
|
24653
25172
|
x-typeid-prefix: job
|
|
25173
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24654
25174
|
responses:
|
|
24655
25175
|
'204':
|
|
24656
25176
|
description: Successful Response
|
|
@@ -24697,6 +25217,7 @@ paths:
|
|
|
24697
25217
|
title: Job Id
|
|
24698
25218
|
type: string
|
|
24699
25219
|
x-typeid-prefix: job
|
|
25220
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24700
25221
|
responses:
|
|
24701
25222
|
'200':
|
|
24702
25223
|
content:
|
|
@@ -24747,6 +25268,7 @@ paths:
|
|
|
24747
25268
|
title: Job Id
|
|
24748
25269
|
type: string
|
|
24749
25270
|
x-typeid-prefix: job
|
|
25271
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24750
25272
|
responses:
|
|
24751
25273
|
'200':
|
|
24752
25274
|
content:
|
|
@@ -24844,6 +25366,7 @@ paths:
|
|
|
24844
25366
|
minimum: 1
|
|
24845
25367
|
title: Page Size
|
|
24846
25368
|
type: integer
|
|
25369
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24847
25370
|
responses:
|
|
24848
25371
|
'200':
|
|
24849
25372
|
content:
|
|
@@ -24867,6 +25390,8 @@ paths:
|
|
|
24867
25390
|
- jobs:read
|
|
24868
25391
|
post:
|
|
24869
25392
|
operationId: create_batch_v1_jobs_post
|
|
25393
|
+
parameters:
|
|
25394
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
24870
25395
|
requestBody:
|
|
24871
25396
|
content:
|
|
24872
25397
|
application/json:
|
|
@@ -25393,6 +25918,7 @@ paths:
|
|
|
25393
25918
|
title: Batch Id
|
|
25394
25919
|
type: string
|
|
25395
25920
|
x-typeid-prefix: batch
|
|
25921
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
25396
25922
|
responses:
|
|
25397
25923
|
'204':
|
|
25398
25924
|
description: Successful Response
|
|
@@ -25438,6 +25964,7 @@ paths:
|
|
|
25438
25964
|
title: Batch Id
|
|
25439
25965
|
type: string
|
|
25440
25966
|
x-typeid-prefix: batch
|
|
25967
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
25441
25968
|
responses:
|
|
25442
25969
|
'200':
|
|
25443
25970
|
content:
|
|
@@ -25600,6 +26127,7 @@ paths:
|
|
|
25600
26127
|
minimum: 1
|
|
25601
26128
|
title: Page Size
|
|
25602
26129
|
type: integer
|
|
26130
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
25603
26131
|
responses:
|
|
25604
26132
|
'200':
|
|
25605
26133
|
content:
|
|
@@ -25836,6 +26364,7 @@ paths:
|
|
|
25836
26364
|
title: Batch Id
|
|
25837
26365
|
type: string
|
|
25838
26366
|
x-typeid-prefix: batch
|
|
26367
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
25839
26368
|
responses:
|
|
25840
26369
|
'204':
|
|
25841
26370
|
description: Successful Response
|
|
@@ -25882,6 +26411,7 @@ paths:
|
|
|
25882
26411
|
title: Batch Id
|
|
25883
26412
|
type: string
|
|
25884
26413
|
x-typeid-prefix: batch
|
|
26414
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
25885
26415
|
responses:
|
|
25886
26416
|
'204':
|
|
25887
26417
|
description: Successful Response
|
|
@@ -25946,6 +26476,7 @@ paths:
|
|
|
25946
26476
|
to retry only insufficient-funds failures. Omit to retry all failed/dead-lettered
|
|
25947
26477
|
jobs in the batch.'
|
|
25948
26478
|
title: Error Class
|
|
26479
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
25949
26480
|
responses:
|
|
25950
26481
|
'200':
|
|
25951
26482
|
content:
|
|
@@ -26032,6 +26563,7 @@ paths:
|
|
|
26032
26563
|
type: string
|
|
26033
26564
|
- type: 'null'
|
|
26034
26565
|
title: Country Code
|
|
26566
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26035
26567
|
responses:
|
|
26036
26568
|
'200':
|
|
26037
26569
|
content:
|
|
@@ -26080,6 +26612,8 @@ paths:
|
|
|
26080
26612
|
post:
|
|
26081
26613
|
description: Create a new organization under the current organization
|
|
26082
26614
|
operationId: create_organization_v1_organizations_post
|
|
26615
|
+
parameters:
|
|
26616
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26083
26617
|
requestBody:
|
|
26084
26618
|
content:
|
|
26085
26619
|
application/json:
|
|
@@ -26153,6 +26687,7 @@ paths:
|
|
|
26153
26687
|
- type: 'null'
|
|
26154
26688
|
description: Optional list of attribute keys to filter
|
|
26155
26689
|
title: Keys
|
|
26690
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26156
26691
|
responses:
|
|
26157
26692
|
'200':
|
|
26158
26693
|
content:
|
|
@@ -26205,6 +26740,8 @@ paths:
|
|
|
26205
26740
|
patch:
|
|
26206
26741
|
description: Updates one or more organization attributes for the current organization
|
|
26207
26742
|
operationId: update_current_organization_attributes_v1_organizations_attributes_patch
|
|
26743
|
+
parameters:
|
|
26744
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26208
26745
|
requestBody:
|
|
26209
26746
|
content:
|
|
26210
26747
|
application/json:
|
|
@@ -26271,6 +26808,8 @@ paths:
|
|
|
26271
26808
|
Single IP addresses are returned with CIDR notation (/32 for IPv4, /128 for
|
|
26272
26809
|
IPv6).'
|
|
26273
26810
|
operationId: list_ip_restrictions_v1_organizations_ip_restrictions_get
|
|
26811
|
+
parameters:
|
|
26812
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26274
26813
|
responses:
|
|
26275
26814
|
'200':
|
|
26276
26815
|
content:
|
|
@@ -26329,6 +26868,8 @@ paths:
|
|
|
26329
26868
|
Individual IP addresses are stored and returned with CIDR notation (/32 for
|
|
26330
26869
|
IPv4, /128 for IPv6).'
|
|
26331
26870
|
operationId: create_ip_restriction_v1_organizations_ip_restrictions_post
|
|
26871
|
+
parameters:
|
|
26872
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26332
26873
|
requestBody:
|
|
26333
26874
|
content:
|
|
26334
26875
|
application/json:
|
|
@@ -26392,6 +26933,7 @@ paths:
|
|
|
26392
26933
|
schema:
|
|
26393
26934
|
title: Ip Restriction Id
|
|
26394
26935
|
type: integer
|
|
26936
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26395
26937
|
responses:
|
|
26396
26938
|
'204':
|
|
26397
26939
|
description: Successful Response
|
|
@@ -26448,6 +26990,7 @@ paths:
|
|
|
26448
26990
|
schema:
|
|
26449
26991
|
title: Ip Restriction Id
|
|
26450
26992
|
type: integer
|
|
26993
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26451
26994
|
responses:
|
|
26452
26995
|
'200':
|
|
26453
26996
|
content:
|
|
@@ -26509,6 +27052,7 @@ paths:
|
|
|
26509
27052
|
schema:
|
|
26510
27053
|
title: Ip Restriction Id
|
|
26511
27054
|
type: integer
|
|
27055
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26512
27056
|
requestBody:
|
|
26513
27057
|
content:
|
|
26514
27058
|
application/json:
|
|
@@ -26563,6 +27107,8 @@ paths:
|
|
|
26563
27107
|
description: Retrieves the catalog of `resource:scope` permissions a custom
|
|
26564
27108
|
role may grant
|
|
26565
27109
|
operationId: list_role_permissions_v1_organizations_role_permissions_get
|
|
27110
|
+
parameters:
|
|
27111
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26566
27112
|
responses:
|
|
26567
27113
|
'200':
|
|
26568
27114
|
content:
|
|
@@ -26613,6 +27159,8 @@ paths:
|
|
|
26613
27159
|
description: 'Retrieves all roles assignable in the current organization: the
|
|
26614
27160
|
built-in roles plus the organization''s custom roles'
|
|
26615
27161
|
operationId: list_roles_v1_organizations_roles_get
|
|
27162
|
+
parameters:
|
|
27163
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26616
27164
|
responses:
|
|
26617
27165
|
'200':
|
|
26618
27166
|
content:
|
|
@@ -26665,6 +27213,8 @@ paths:
|
|
|
26665
27213
|
description: Creates an organization-owned custom role granting the requested
|
|
26666
27214
|
permissions. The escalation-bearing admin/owner permissions cannot be granted.
|
|
26667
27215
|
operationId: create_role_v1_organizations_roles_post
|
|
27216
|
+
parameters:
|
|
27217
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26668
27218
|
requestBody:
|
|
26669
27219
|
content:
|
|
26670
27220
|
application/json:
|
|
@@ -26738,6 +27288,7 @@ paths:
|
|
|
26738
27288
|
schema:
|
|
26739
27289
|
title: Label
|
|
26740
27290
|
type: string
|
|
27291
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26741
27292
|
responses:
|
|
26742
27293
|
'204':
|
|
26743
27294
|
description: Successful Response
|
|
@@ -26815,6 +27366,7 @@ paths:
|
|
|
26815
27366
|
schema:
|
|
26816
27367
|
title: Label
|
|
26817
27368
|
type: string
|
|
27369
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26818
27370
|
responses:
|
|
26819
27371
|
'200':
|
|
26820
27372
|
content:
|
|
@@ -26885,6 +27437,7 @@ paths:
|
|
|
26885
27437
|
schema:
|
|
26886
27438
|
title: Label
|
|
26887
27439
|
type: string
|
|
27440
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
26888
27441
|
requestBody:
|
|
26889
27442
|
content:
|
|
26890
27443
|
application/json:
|
|
@@ -27003,6 +27556,7 @@ paths:
|
|
|
27003
27556
|
type: string
|
|
27004
27557
|
- type: 'null'
|
|
27005
27558
|
title: Search
|
|
27559
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27006
27560
|
responses:
|
|
27007
27561
|
'200':
|
|
27008
27562
|
content:
|
|
@@ -27064,6 +27618,7 @@ paths:
|
|
|
27064
27618
|
title: Organization Id
|
|
27065
27619
|
type: string
|
|
27066
27620
|
x-typeid-prefix: organization
|
|
27621
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27067
27622
|
responses:
|
|
27068
27623
|
'204':
|
|
27069
27624
|
description: Successful Response
|
|
@@ -27118,6 +27673,7 @@ paths:
|
|
|
27118
27673
|
title: Organization Id
|
|
27119
27674
|
type: string
|
|
27120
27675
|
x-typeid-prefix: organization
|
|
27676
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27121
27677
|
responses:
|
|
27122
27678
|
'200':
|
|
27123
27679
|
content:
|
|
@@ -27178,6 +27734,7 @@ paths:
|
|
|
27178
27734
|
title: Organization Id
|
|
27179
27735
|
type: string
|
|
27180
27736
|
x-typeid-prefix: organization
|
|
27737
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27181
27738
|
requestBody:
|
|
27182
27739
|
content:
|
|
27183
27740
|
application/json:
|
|
@@ -27255,6 +27812,7 @@ paths:
|
|
|
27255
27812
|
- type: 'null'
|
|
27256
27813
|
description: Optional list of attribute keys to filter
|
|
27257
27814
|
title: Keys
|
|
27815
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27258
27816
|
responses:
|
|
27259
27817
|
'200':
|
|
27260
27818
|
content:
|
|
@@ -27319,6 +27877,7 @@ paths:
|
|
|
27319
27877
|
title: Organization Id
|
|
27320
27878
|
type: string
|
|
27321
27879
|
x-typeid-prefix: organization
|
|
27880
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27322
27881
|
requestBody:
|
|
27323
27882
|
content:
|
|
27324
27883
|
application/json:
|
|
@@ -27408,6 +27967,7 @@ paths:
|
|
|
27408
27967
|
minimum: 1
|
|
27409
27968
|
title: Page Size
|
|
27410
27969
|
type: integer
|
|
27970
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27411
27971
|
responses:
|
|
27412
27972
|
'200':
|
|
27413
27973
|
content:
|
|
@@ -27467,6 +28027,7 @@ paths:
|
|
|
27467
28027
|
- type: string
|
|
27468
28028
|
- type: 'null'
|
|
27469
28029
|
title: Product Class
|
|
28030
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27470
28031
|
responses:
|
|
27471
28032
|
'200':
|
|
27472
28033
|
content:
|
|
@@ -27627,6 +28188,7 @@ paths:
|
|
|
27627
28188
|
type: string
|
|
27628
28189
|
- type: 'null'
|
|
27629
28190
|
title: Completed Before
|
|
28191
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27630
28192
|
responses:
|
|
27631
28193
|
'200':
|
|
27632
28194
|
content:
|
|
@@ -27699,6 +28261,7 @@ paths:
|
|
|
27699
28261
|
title: Transaction Id
|
|
27700
28262
|
type: string
|
|
27701
28263
|
x-typeid-prefix: billing_transaction
|
|
28264
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27702
28265
|
responses:
|
|
27703
28266
|
'200':
|
|
27704
28267
|
content:
|
|
@@ -27806,6 +28369,7 @@ paths:
|
|
|
27806
28369
|
- $ref: '#/components/schemas/ComplianceStatus'
|
|
27807
28370
|
- type: 'null'
|
|
27808
28371
|
title: Compliance Status
|
|
28372
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27809
28373
|
responses:
|
|
27810
28374
|
'200':
|
|
27811
28375
|
content:
|
|
@@ -27874,6 +28438,7 @@ paths:
|
|
|
27874
28438
|
type: string
|
|
27875
28439
|
- type: 'null'
|
|
27876
28440
|
title: End Time
|
|
28441
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27877
28442
|
responses:
|
|
27878
28443
|
'200':
|
|
27879
28444
|
content:
|
|
@@ -27924,6 +28489,8 @@ paths:
|
|
|
27924
28489
|
description: Accept the parking agreement to enable parking features for your
|
|
27925
28490
|
organization.
|
|
27926
28491
|
operationId: signup_for_parking_v1_parking_signup_post
|
|
28492
|
+
parameters:
|
|
28493
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27927
28494
|
requestBody:
|
|
27928
28495
|
content:
|
|
27929
28496
|
application/json:
|
|
@@ -27978,6 +28545,8 @@ paths:
|
|
|
27978
28545
|
get:
|
|
27979
28546
|
description: Check if your organization has accepted the parking agreement.
|
|
27980
28547
|
operationId: get_parking_signup_status_v1_parking_signup_status_get
|
|
28548
|
+
parameters:
|
|
28549
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
27981
28550
|
responses:
|
|
27982
28551
|
'200':
|
|
27983
28552
|
content:
|
|
@@ -28060,6 +28629,7 @@ paths:
|
|
|
28060
28629
|
type: string
|
|
28061
28630
|
- type: 'null'
|
|
28062
28631
|
title: End Time
|
|
28632
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28063
28633
|
responses:
|
|
28064
28634
|
'200':
|
|
28065
28635
|
content:
|
|
@@ -28184,6 +28754,7 @@ paths:
|
|
|
28184
28754
|
type: string
|
|
28185
28755
|
- type: 'null'
|
|
28186
28756
|
title: Created Before
|
|
28757
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28187
28758
|
responses:
|
|
28188
28759
|
'200':
|
|
28189
28760
|
content:
|
|
@@ -28207,6 +28778,8 @@ paths:
|
|
|
28207
28778
|
- organization:read
|
|
28208
28779
|
post:
|
|
28209
28780
|
operationId: create_report_v1_reports_post
|
|
28781
|
+
parameters:
|
|
28782
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28210
28783
|
requestBody:
|
|
28211
28784
|
content:
|
|
28212
28785
|
application/json:
|
|
@@ -28245,6 +28818,7 @@ paths:
|
|
|
28245
28818
|
schema:
|
|
28246
28819
|
title: Report Id
|
|
28247
28820
|
type: string
|
|
28821
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28248
28822
|
responses:
|
|
28249
28823
|
'200':
|
|
28250
28824
|
content:
|
|
@@ -28276,6 +28850,7 @@ paths:
|
|
|
28276
28850
|
schema:
|
|
28277
28851
|
title: Report Id
|
|
28278
28852
|
type: string
|
|
28853
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28279
28854
|
responses:
|
|
28280
28855
|
'200':
|
|
28281
28856
|
content:
|
|
@@ -28350,6 +28925,7 @@ paths:
|
|
|
28350
28925
|
- type: string
|
|
28351
28926
|
- type: 'null'
|
|
28352
28927
|
title: Search
|
|
28928
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28353
28929
|
responses:
|
|
28354
28930
|
'200':
|
|
28355
28931
|
content:
|
|
@@ -28386,6 +28962,8 @@ paths:
|
|
|
28386
28962
|
post:
|
|
28387
28963
|
description: Create a new tag
|
|
28388
28964
|
operationId: create_tag_v1_tags_post
|
|
28965
|
+
parameters:
|
|
28966
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28389
28967
|
requestBody:
|
|
28390
28968
|
content:
|
|
28391
28969
|
application/json:
|
|
@@ -28443,6 +29021,8 @@ paths:
|
|
|
28443
29021
|
description: Add, remove, or replace tags on multiple objects at once. 'replace'
|
|
28444
29022
|
is mutually exclusive with 'add' and 'remove'.
|
|
28445
29023
|
operationId: bulk_update_object_tags_v1_tags_objects_post
|
|
29024
|
+
parameters:
|
|
29025
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28446
29026
|
requestBody:
|
|
28447
29027
|
content:
|
|
28448
29028
|
application/json:
|
|
@@ -28524,6 +29104,7 @@ paths:
|
|
|
28524
29104
|
title: Tag Id
|
|
28525
29105
|
type: string
|
|
28526
29106
|
x-typeid-prefix: tag
|
|
29107
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28527
29108
|
responses:
|
|
28528
29109
|
'204':
|
|
28529
29110
|
description: Successful Response
|
|
@@ -28581,6 +29162,7 @@ paths:
|
|
|
28581
29162
|
title: Tag Id
|
|
28582
29163
|
type: string
|
|
28583
29164
|
x-typeid-prefix: tag
|
|
29165
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28584
29166
|
responses:
|
|
28585
29167
|
'200':
|
|
28586
29168
|
content:
|
|
@@ -28642,6 +29224,7 @@ paths:
|
|
|
28642
29224
|
title: Tag Id
|
|
28643
29225
|
type: string
|
|
28644
29226
|
x-typeid-prefix: tag
|
|
29227
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28645
29228
|
requestBody:
|
|
28646
29229
|
content:
|
|
28647
29230
|
application/json:
|
|
@@ -28724,6 +29307,7 @@ paths:
|
|
|
28724
29307
|
title: Tag Id
|
|
28725
29308
|
type: string
|
|
28726
29309
|
x-typeid-prefix: tag
|
|
29310
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28727
29311
|
requestBody:
|
|
28728
29312
|
content:
|
|
28729
29313
|
application/json:
|
|
@@ -28797,6 +29381,7 @@ paths:
|
|
|
28797
29381
|
- type: string
|
|
28798
29382
|
- type: 'null'
|
|
28799
29383
|
title: Tlds
|
|
29384
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28800
29385
|
responses:
|
|
28801
29386
|
'200':
|
|
28802
29387
|
content:
|
|
@@ -28828,6 +29413,8 @@ paths:
|
|
|
28828
29413
|
get:
|
|
28829
29414
|
description: Retrieves a list of TLDs we have support for
|
|
28830
29415
|
operationId: get_tld_portfolio_v1_tlds_portfolio_get
|
|
29416
|
+
parameters:
|
|
29417
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28831
29418
|
responses:
|
|
28832
29419
|
'200':
|
|
28833
29420
|
content:
|
|
@@ -28863,6 +29450,7 @@ paths:
|
|
|
28863
29450
|
schema:
|
|
28864
29451
|
title: Tld
|
|
28865
29452
|
type: string
|
|
29453
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28866
29454
|
responses:
|
|
28867
29455
|
'200':
|
|
28868
29456
|
content:
|
|
@@ -28900,6 +29488,8 @@ paths:
|
|
|
28900
29488
|
post:
|
|
28901
29489
|
description: Create a new user
|
|
28902
29490
|
operationId: create_user_v1_users_post
|
|
29491
|
+
parameters:
|
|
29492
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28903
29493
|
requestBody:
|
|
28904
29494
|
content:
|
|
28905
29495
|
application/json:
|
|
@@ -28942,6 +29532,7 @@ paths:
|
|
|
28942
29532
|
type: array
|
|
28943
29533
|
- type: 'null'
|
|
28944
29534
|
title: Attributes
|
|
29535
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28945
29536
|
responses:
|
|
28946
29537
|
'200':
|
|
28947
29538
|
content:
|
|
@@ -28978,6 +29569,7 @@ paths:
|
|
|
28978
29569
|
title: User Id
|
|
28979
29570
|
type: string
|
|
28980
29571
|
x-typeid-prefix: user
|
|
29572
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
28981
29573
|
responses:
|
|
28982
29574
|
'204':
|
|
28983
29575
|
description: Successful Response
|
|
@@ -29034,6 +29626,7 @@ paths:
|
|
|
29034
29626
|
type: array
|
|
29035
29627
|
- type: 'null'
|
|
29036
29628
|
title: Attributes
|
|
29629
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29037
29630
|
responses:
|
|
29038
29631
|
'200':
|
|
29039
29632
|
content:
|
|
@@ -29070,6 +29663,7 @@ paths:
|
|
|
29070
29663
|
title: User Id
|
|
29071
29664
|
type: string
|
|
29072
29665
|
x-typeid-prefix: user
|
|
29666
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29073
29667
|
requestBody:
|
|
29074
29668
|
content:
|
|
29075
29669
|
application/json:
|
|
@@ -29113,6 +29707,7 @@ paths:
|
|
|
29113
29707
|
title: User Id
|
|
29114
29708
|
type: string
|
|
29115
29709
|
x-typeid-prefix: user
|
|
29710
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29116
29711
|
responses:
|
|
29117
29712
|
'200':
|
|
29118
29713
|
content:
|
|
@@ -29150,6 +29745,7 @@ paths:
|
|
|
29150
29745
|
title: User Id
|
|
29151
29746
|
type: string
|
|
29152
29747
|
x-typeid-prefix: user
|
|
29748
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29153
29749
|
responses:
|
|
29154
29750
|
'200':
|
|
29155
29751
|
content:
|
|
@@ -29187,6 +29783,7 @@ paths:
|
|
|
29187
29783
|
title: User Id
|
|
29188
29784
|
type: string
|
|
29189
29785
|
x-typeid-prefix: user
|
|
29786
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29190
29787
|
requestBody:
|
|
29191
29788
|
content:
|
|
29192
29789
|
application/json:
|
|
@@ -29257,6 +29854,7 @@ paths:
|
|
|
29257
29854
|
minimum: 1
|
|
29258
29855
|
title: Page Size
|
|
29259
29856
|
type: integer
|
|
29857
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29260
29858
|
responses:
|
|
29261
29859
|
'200':
|
|
29262
29860
|
content:
|
|
@@ -29280,6 +29878,8 @@ paths:
|
|
|
29280
29878
|
- vanity_ns:read
|
|
29281
29879
|
post:
|
|
29282
29880
|
operationId: create_vanity_nameserver_set_v1_vanity_nameserver_sets_post
|
|
29881
|
+
parameters:
|
|
29882
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29283
29883
|
requestBody:
|
|
29284
29884
|
content:
|
|
29285
29885
|
application/json:
|
|
@@ -29352,6 +29952,8 @@ paths:
|
|
|
29352
29952
|
/v1/vanity-nameserver-sets/check:
|
|
29353
29953
|
post:
|
|
29354
29954
|
operationId: check_vanity_nameserver_set_v1_vanity_nameserver_sets_check_post
|
|
29955
|
+
parameters:
|
|
29956
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29355
29957
|
requestBody:
|
|
29356
29958
|
content:
|
|
29357
29959
|
application/json:
|
|
@@ -29464,6 +30066,8 @@ paths:
|
|
|
29464
30066
|
/v1/vanity-nameserver-sets/default:
|
|
29465
30067
|
delete:
|
|
29466
30068
|
operationId: clear_vanity_nameserver_set_default_v1_vanity_nameserver_sets_default_delete
|
|
30069
|
+
parameters:
|
|
30070
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29467
30071
|
responses:
|
|
29468
30072
|
'200':
|
|
29469
30073
|
content:
|
|
@@ -29500,6 +30104,7 @@ paths:
|
|
|
29500
30104
|
title: Set Id
|
|
29501
30105
|
type: string
|
|
29502
30106
|
x-typeid-prefix: vns
|
|
30107
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29503
30108
|
responses:
|
|
29504
30109
|
'202':
|
|
29505
30110
|
content:
|
|
@@ -29534,6 +30139,7 @@ paths:
|
|
|
29534
30139
|
title: Set Id
|
|
29535
30140
|
type: string
|
|
29536
30141
|
x-typeid-prefix: vns
|
|
30142
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29537
30143
|
responses:
|
|
29538
30144
|
'200':
|
|
29539
30145
|
content:
|
|
@@ -29570,6 +30176,7 @@ paths:
|
|
|
29570
30176
|
title: Set Id
|
|
29571
30177
|
type: string
|
|
29572
30178
|
x-typeid-prefix: vns
|
|
30179
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29573
30180
|
responses:
|
|
29574
30181
|
'200':
|
|
29575
30182
|
content:
|
|
@@ -29606,6 +30213,7 @@ paths:
|
|
|
29606
30213
|
title: Set Id
|
|
29607
30214
|
type: string
|
|
29608
30215
|
x-typeid-prefix: vns
|
|
30216
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29609
30217
|
responses:
|
|
29610
30218
|
'200':
|
|
29611
30219
|
content:
|
|
@@ -29642,6 +30250,7 @@ paths:
|
|
|
29642
30250
|
title: Set Id
|
|
29643
30251
|
type: string
|
|
29644
30252
|
x-typeid-prefix: vns
|
|
30253
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29645
30254
|
responses:
|
|
29646
30255
|
'202':
|
|
29647
30256
|
content:
|
|
@@ -29695,6 +30304,7 @@ paths:
|
|
|
29695
30304
|
minimum: 1
|
|
29696
30305
|
title: Page Size
|
|
29697
30306
|
type: integer
|
|
30307
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
29698
30308
|
responses:
|
|
29699
30309
|
'200':
|
|
29700
30310
|
content:
|