-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
1008 lines (969 loc) · 40 KB
/
Copy pathopenapi.yaml
File metadata and controls
1008 lines (969 loc) · 40 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: EPP Poll API
version: 1.0.0
description: |
## Introduction
Welcome to the .ee registry EPP Poll message documentation.
This documentation describes poll notifications issued by the registry,
intended for registrars building automation on top of EPP poll.
> **Note:** Paths shown in this documentation are for documentation only, not real HTTP endpoints.
> Poll messages are delivered via the EPP protocol over TLS, not REST API calls.
## How poll works
1. Send `poll req` to retrieve the next message from the queue
2. Process the message based on its type
3. Send `poll ack` with the message ID to acknowledge it
## Message types
See the sidebar for all documented poll message types with XML examples.
x-logo:
url: eif-logo.png
backgroundColor: '#FFFFFF'
altText: EIS logo
x-tagGroups:
- name: Poll
tags:
- Requests
- Poll messages
- CSYNC poll messages
- Change poll messages
tags:
- name: Requests
description: Poll request and acknowledge commands.
- name: Poll messages
description: |
Poll messages as defined in [RFC 5730 section 2.9.2.3](https://www.rfc-editor.org/rfc/rfc5730.html#section-2.9.2.3).
- name: CSYNC poll messages
description: CSYNC poll messages (not currently in use).
- name: Change poll messages
description: |
Change poll messages as defined in [RFC 8590](https://www.rfc-editor.org/rfc/rfc8590.html).
paths:
/epp/poll/req:
post:
tags:
- Requests
summary: Request last message in the queue
operationId: pollReq
requestBody:
required: true
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollRequest'
example: |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
<command>
<poll op="req"/>
<clTRID>QueryNO-1</clTRID>
</command>
</epp>
responses:
'200':
description: Poll response
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollEmptyResponse'
examples:
queueEmpty:
summary: Response - queue is empty
value: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1300">
<msg>Command completed successfully; no messages</msg>
</result>
<trID>
<clTRID>2af275f1a0234f</clTRID>
<svTRID>ccReg-8619709603</svTRID>
</trID>
</response>
</epp>
/epp/poll/ack:
post:
tags:
- Requests
summary: Acknowledge - set poll message as read
operationId: pollAck
requestBody:
required: true
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollRequest'
example: |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
<command>
<poll op="ack" msgID="175232"/>
<clTRID>timo2-1737037930</clTRID>
</command>
</epp>
responses:
'200':
description: Successful response
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollAckResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1000">
<msg>Command completed successfully</msg>
</result>
<msgQ count="65325" id="175232"/>
<trID>
<clTRID>timo2-1737037930</clTRID>
<svTRID>ccReg-2755405695</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/domain-transferred-away:
get:
tags:
- Poll messages
summary: Domain trasfered away from the registrar
operationId: pollMessageDomainTransferredAway
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="132" id="506585">
<qDate>2025-01-03T07:50:09Z</qDate>
<msg>Transfer of domain wns.ee has been approved. It was associated with registrant WEBNIC:WN55673440T and contacts WEBNIC:WN52773574T, WEBNIC:WN52773578T.</msg>
</msgQ>
<resData>
<domain:trnData xmlns:domain="https://epp.tld.ee/schema/domain-ee-1.1.xsd">
<domain:name>wns.ee</domain:name>
<domain:trStatus>serverApproved</domain:trStatus>
<domain:reID>ALMIC</domain:reID>
<domain:reDate>2025-01-03T09:50:09+02:00</domain:reDate>
<domain:acID>WEBNIC</domain:acID>
<domain:acDate>2025-01-03T09:50:09+02:00</domain:acDate>
<domain:exDate>2025-09-26T00:00:00+03:00</domain:exDate>
</domain:trnData>
</resData>
<trID>
<clTRID>ABC:wbcc1737036969037:1737036969037</clTRID>
<svTRID>ccReg-9951844321</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/force-delete-set:
get:
tags:
- Poll messages
summary: ForceDelete set on a domain
operationId: pollMessageForceDeleteSet
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="65326" id="175232">
<qDate>2025-01-14T10:33:33Z</qDate>
<msg>Force delete set on domain hizytkej.ee. Outzone date: 2025-01-30 00:00:00 +0200. Purge date: 2025-03-01 00:00:00 +0200</msg>
</msgQ>
<trID>
<clTRID>timo2-1737037733</clTRID>
<svTRID>ccReg-3645777158</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/force-delete-set-invalid-email:
get:
tags:
- Poll messages
summary: ForceDelete set on a domain with status notes (reason - invalid email)
operationId: pollMessageForceDeleteSetInvalidEmail
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="537024">
<qDate>2025-01-16T03:06:15Z</qDate>
<msg>Force delete set on domain kowalski-engineering.ee. Outzone date: 2025-04-26 00:00:00 +0300. Purge date: 2025-05-26 00:00:00 +0300. Invalid email: tomasz.kowalski@kowalski-consulting.pl</msg>
</msgQ>
<trID>
<clTRID>0.96641800 1736997003</clTRID>
<svTRID>ccReg-4421876015</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/force-delete-set-invalid-ident:
get:
tags:
- Poll messages
summary: ForceDelete set on a domain with status notes (reason - invalid ident)
operationId: pollMessageForceDeleteSetInvalidIdent
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="665" id="349421">
<qDate>2024-12-19T11:05:59Z</qDate>
<msg>Force delete set on domain fd-on-vajalik.ee. Outzone date: 2025-01-04 00:00:00 +0200. Purge date: 2025-02-03 00:00:00 +0200. Invalid ident 00000000</msg>
</msgQ>
<trID>
<clTRID>Märi Änn R1-1734691898</clTRID>
<svTRID>ccReg-9056177102</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/soft-force-delete-set:
get:
tags:
- Poll messages
summary: Soft ForceDelete set on a domain
operationId: pollMessageSoftForceDeleteSet
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="65326" id="175232">
<qDate>2025-01-14T10:33:33Z</qDate>
<msg>For domain .* started [0-9]+\-days redemption grace period\, ForceDelete will be in effect from .*\+[0-9]+</msg>
</msgQ>
<trID>
<clTRID>timo2-1737037733</clTRID>
<svTRID>ccReg-3645777158</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/force-delete-canceled:
get:
tags:
- Poll messages
summary: ForceDelete canceled
operationId: pollMessageForceDeleteCanceled
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="537049">
<qDate>2025-01-16T13:00:22Z</qDate>
<msg>Force delete is cancelled on domain barberhouse.ee</msg>
</msgQ>
<trID>
<clTRID>0.42681300 1737032425</clTRID>
<svTRID>ccReg-2576844597</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/domain-deleted:
get:
tags:
- Poll messages
summary: Domain deleted
operationId: pollMessageDomainDeleted
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="537005">
<qDate>2025-01-15T22:02:20Z</qDate>
<msg>Domain deleted!: madebyme.ee</msg>
</msgQ>
<trID>
<clTRID>EIS#poll_20250116080029_1737014429555</clTRID>
<svTRID>ccReg-0373743673</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/registrant-approved-domain-owner-change:
get:
tags:
- Poll messages
summary: Registrant approved domain owner change
operationId: pollMessageRegistrantApprovedDomainOwnerChange
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>Registrant confirmed domain update: .*</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/registrant-rejected-domain-owner-change:
get:
tags:
- Poll messages
summary: Registrant rejected domain owner change
operationId: pollMessageRegistrantRejectedDomainOwnerChange
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>Registrant rejected domain update: .*</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/domain-owner-change-request-expired:
get:
tags:
- Poll messages
summary: Domain owner change request expired
operationId: pollMessageDomainOwnerChangeRequestExpired
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>Registrant did not confirm domain update: .*</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/registrant-approved-domain-deletion:
get:
tags:
- Poll messages
summary: Registrant approved domain deletion
operationId: pollMessageRegistrantApprovedDomainDeletion
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>Registrant confirmed domain deletion: .*</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/registrant-rejected-domain-deletion:
get:
tags:
- Poll messages
summary: Registrant rejected domain deletion
operationId: pollMessageRegistrantRejectedDomainDeletion
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>Registrant rejected domain deletion: .*</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/domain-deletion-request-expired:
get:
tags:
- Poll messages
summary: Domain deletion request expired
operationId: pollMessageDomainDeletionRequestExpired
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>Registrant did not confirm domain deletion: .*</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/registry-lock-applied:
get:
tags:
- Poll messages
summary: Registry lock applied on the domain
operationId: pollMessageRegistryLockApplied
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>Domain .* has been locked by registrant</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/registry-lock-removed:
get:
tags:
- Poll messages
summary: Registry lock removed from a domain
operationId: pollMessageRegistryLockRemoved
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>Domain .* has been unlocked by registrant</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/contact-auto-deleted:
get:
tags:
- Poll messages
summary: Contact object automatically deleted for being unlinked for more than 6 months
operationId: pollMessageContactAutoDeleted
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="10508" id="349414">
<qDate>2024-12-05T21:59:53Z</qDate>
<msg>Contact with code REG2:767CADD4 has been archieved because it has been orphaned for longer than 6 months.</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/contact-name-updated-by-registry:
get:
tags:
- Poll messages
summary: Name of a contact is updated by the registry
operationId: pollMessageContactNameUpdatedByRegistry
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>Contact update: \d+ name updated from .* to .* by the registry</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/csync-dnssec-set:
get:
tags:
- CSYNC poll messages
summary: DNSSEC set for a domain
operationId: pollMessageCsyncDnssecSet
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>CSYNC DNSSEC initialized for domain .*</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/csync-dnssec-deactivated:
get:
tags:
- CSYNC poll messages
summary: DNSSEC deactivated for a domain
operationId: pollMessageCsyncDnssecDeactivated
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>CSYNC DNSSEC deactivate for domain .*</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/csync-dnssec-key-rollover:
get:
tags:
- CSYNC poll messages
summary: DNSSEC key rollover initiated for a domain
operationId: pollMessageCsyncDnssecKeyRollover
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="1" id="123456">
<qDate>2025-01-17T12:40:00Z</qDate>
<msg>CSYNC DNSSEC rollover for domain .*</msg>
</msgQ>
<trID>
<clTRID>QueryNO-1</clTRID>
<svTRID>ccReg-1826947367</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/contact-updated-via-portal:
get:
tags:
- Change poll messages
summary: Contact data was updated via the registrant portal
operationId: pollMessageContactUpdatedViaPortal
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="65325" id="175222">
<qDate>2025-01-06T14:31:07Z</qDate>
<msg>Contact REGISTRAR-SECOND-AS:81C67013 has been updated by registrant</msg>
</msgQ>
<resData>
<contact:chkData xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd">
<contact:cd>
<contact:id avail="0">REGISTRAR-SECOND-AS:81C67013</contact:id>
</contact:cd>
</contact:chkData>
</resData>
<extension>
<changePoll:changeData xmlns:changePoll="https://epp.tld.ee/schema/changePoll-1.0.xsd">
<changePoll:operation>update</changePoll:operation>
<changePoll:date>2025-01-06T14:31:07Z</changePoll:date>
<changePoll:svTRID>1632</changePoll:svTRID>
<changePoll:who>Martin Mettig</changePoll:who>
</changePoll:changeData>
</extension>
<trID>
<clTRID>timo2-1737038221</clTRID>
<svTRID>ccReg-8442168984</svTRID>
</trID>
</response>
</epp>
/epp/poll/messages/multiple-contacts-updated-via-portal:
get:
tags:
- Change poll messages
summary: Multiple contacts updated simultaneously via the registrant portal
operationId: pollMessageMultipleContactsUpdatedViaPortal
responses:
'200':
description: Poll message example
content:
application/xml:
schema:
$ref: '#/components/schemas/EppPollMessageResponse'
example: |
<?xml version="1.0" encoding="UTF-8"?>
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="lib/schemas/epp-ee-1.0.xsd">
<response>
<result code="1301">
<msg>Command completed successfully; ack to dequeue</msg>
</result>
<msgQ count="9" id="16">
<qDate>2024-02-16T13:17:18Z</qDate>
<msg>4 contacts have been updated by registrant</msg>
</msgQ>
<resData>
<contact:chkData xmlns:contact="https://epp.tld.ee/schema/contact-ee-1.1.xsd">
<contact:cd>
<contact:id avail="0">1111111:33F3C8C4</contact:id>
</contact:cd>
<contact:cd>
<contact:id avail="0">1111111:0C82F3A3</contact:id>
</contact:cd>
<contact:cd>
<contact:id avail="0">1111111:REGISTRAR.EE</contact:id>
</contact:cd>
<contact:cd>
<contact:id avail="0">1111111:SASAS.EE</contact:id>
</contact:cd>
</contact:chkData>
</resData>
<extension>
<changePoll:changeData xmlns:changePoll="https://epp.tld.ee/schema/changePoll-1.0.xsd">
<changePoll:operation>bulk_update</changePoll:operation>
<changePoll:date>2024-02-16T13:17:18Z</changePoll:date>
<changePoll:svTRID>4</changePoll:svTRID>
<changePoll:who>Sergei Tsõganov</changePoll:who>
<changePoll:reason>Auto-update according to official data</changePoll:reason>
</changePoll:changeData>
</extension>
<trID>
<clTRID>maricavor-1712140699</clTRID>
<svTRID>ccReg-7316204233</svTRID>
</trID>
</response>
</epp>
components:
schemas:
EppPollRequest:
type: object
description: EPP poll command request
xml:
name: epp
namespace: https://epp.tld.ee/schema/epp-ee-1.0.xsd
properties:
command:
type: object
properties:
poll:
type: object
properties:
op:
type: string
enum: [req, ack]
xml:
attribute: true
msgID:
type: string
xml:
attribute: true
description: Required when op is ack
required:
- op
clTRID:
type: string
required:
- poll
- clTRID
required:
- command
EppResult:
type: object
properties:
code:
type: string
xml:
attribute: true
msg:
type: string
EppTrID:
type: object
properties:
clTRID:
type: string
svTRID:
type: string
EppMsgQ:
type: object
properties:
count:
type: string
xml:
attribute: true
id:
type: string
xml:
attribute: true
qDate:
type: string
format: date-time
msg:
type: string
EppPollEmptyResponse:
type: object
description: EPP response when poll queue is empty (result code 1300)
xml:
name: epp
namespace: https://epp.tld.ee/schema/epp-ee-1.0.xsd
properties:
response:
type: object
properties:
result:
$ref: '#/components/schemas/EppResult'
trID:
$ref: '#/components/schemas/EppTrID'
required:
- result
- trID
required:
- response
EppPollAckResponse:
type: object
description: EPP response for successful poll acknowledge (result code 1000)
xml:
name: epp
namespace: https://epp.tld.ee/schema/epp-ee-1.0.xsd
properties:
response:
type: object
properties:
result:
$ref: '#/components/schemas/EppResult'
msgQ:
$ref: '#/components/schemas/EppMsgQ'
trID:
$ref: '#/components/schemas/EppTrID'
required:
- result
- trID
required:
- response
EppPollMessageResponse:
type: object
description: EPP poll message response (result code 1301)
xml:
name: epp
namespace: https://epp.tld.ee/schema/epp-ee-1.0.xsd
properties:
response:
type: object
properties:
result:
$ref: '#/components/schemas/EppResult'
msgQ:
$ref: '#/components/schemas/EppMsgQ'
resData:
type: object
description: Optional response data
extension:
type: object
description: Optional extension data