GET api/store/{id}/replication/peek?limit={limit}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| limit | integer |
Default value is 1000 |
Body Parameters
None.
Response Information
Resource Description
Collection of ReplicationCommand| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
Unique identifier for the command This is set to a when using ReplicationV2.5 for backwards compat So, can be unique to a target store, while is shared across stores, identifying the |
globally unique identifier |
None. |
| Sql |
SQL command text |
string |
None. |
| SqlHash |
SQL command hash |
string |
None. |
| Transaction |
When set, this groups the ReplicationCommand as part of a batch |
ReplicationTransaction |
None. |
| Parameters |
SQL parameters - dict, POCO or anonymous type |
Object |
None. |
| ReplicationParameters |
SQL Parameters - serialisable |
Dictionary of string [key] and ReplicationParameter [value] |
None. |
| EmptyParameters | boolean |
None. |
|
| Targets |
List of Targets |
Collection of globally unique identifier |
None. |
| Created |
Date the command was created |
date |
None. |
| CreatedTimestamp | integer |
None. |
|
| IdempotentID |
can be unique to a target store, while is shared across stores, identifying the |
globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"id": "eda7f02c-e75f-4c9a-b00a-cd078cd7a667",
"sql": "sample string 2",
"sqlHash": "sample string 3",
"transaction": {
"$id": "2",
"id": "811c3694-ab27-47aa-887d-a7ae8102e267",
"dataSource": "c0893cd9-2650-4988-a4ea-20b1fbc230b7",
"sourceIDs": [
1,
2
]
},
"parameters": {
"$id": "3"
},
"replicationParameters": {
"$id": "4",
"sample string 1": {
"$id": "5"
},
"sample string 2": {
"$id": "6"
}
},
"emptyParameters": true,
"targets": [
"3192fcb1-0fd3-4b47-bf8d-230b8c0123a7",
"02a620f5-68a9-4c15-8aa3-fe4b0eef6f87"
],
"created": "2026-06-03T18:33:16.3193461",
"createdTimestamp": 7,
"idempotentID": "eda7f02c-e75f-4c9a-b00a-cd078cd7a667"
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfReplicationCommand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.Tenancies.Replication">
<ReplicationCommand>
<Created>2026-06-03T18:33:16.3193461+00:00</Created>
<CreatedTimestamp>7</CreatedTimestamp>
<EmptyParameters>true</EmptyParameters>
<ID>eda7f02c-e75f-4c9a-b00a-cd078cd7a667</ID>
<Parameters />
<ReplicationParameters xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringReplicationParameterOT8kAyz1>
<d3p1:Key>sample string 1</d3p1:Key>
<d3p1:Value />
</d3p1:KeyValueOfstringReplicationParameterOT8kAyz1>
<d3p1:KeyValueOfstringReplicationParameterOT8kAyz1>
<d3p1:Key>sample string 2</d3p1:Key>
<d3p1:Value />
</d3p1:KeyValueOfstringReplicationParameterOT8kAyz1>
</ReplicationParameters>
<Sql>sample string 2</Sql>
<SqlHash>sample string 3</SqlHash>
<Targets xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:guid>3192fcb1-0fd3-4b47-bf8d-230b8c0123a7</d3p1:guid>
<d3p1:guid>02a620f5-68a9-4c15-8aa3-fe4b0eef6f87</d3p1:guid>
</Targets>
<Transaction>
<DataSource>c0893cd9-2650-4988-a4ea-20b1fbc230b7</DataSource>
<ID>811c3694-ab27-47aa-887d-a7ae8102e267</ID>
<SourceIDs xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:int>1</d4p1:int>
<d4p1:int>2</d4p1:int>
</SourceIDs>
</Transaction>
</ReplicationCommand>
<ReplicationCommand>
<Created>2026-06-03T18:33:16.3193461+00:00</Created>
<CreatedTimestamp>7</CreatedTimestamp>
<EmptyParameters>true</EmptyParameters>
<ID>eda7f02c-e75f-4c9a-b00a-cd078cd7a667</ID>
<Parameters />
<ReplicationParameters xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringReplicationParameterOT8kAyz1>
<d3p1:Key>sample string 1</d3p1:Key>
<d3p1:Value />
</d3p1:KeyValueOfstringReplicationParameterOT8kAyz1>
<d3p1:KeyValueOfstringReplicationParameterOT8kAyz1>
<d3p1:Key>sample string 2</d3p1:Key>
<d3p1:Value />
</d3p1:KeyValueOfstringReplicationParameterOT8kAyz1>
</ReplicationParameters>
<Sql>sample string 2</Sql>
<SqlHash>sample string 3</SqlHash>
<Targets xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:guid>3192fcb1-0fd3-4b47-bf8d-230b8c0123a7</d3p1:guid>
<d3p1:guid>02a620f5-68a9-4c15-8aa3-fe4b0eef6f87</d3p1:guid>
</Targets>
<Transaction>
<DataSource>c0893cd9-2650-4988-a4ea-20b1fbc230b7</DataSource>
<ID>811c3694-ab27-47aa-887d-a7ae8102e267</ID>
<SourceIDs xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:int>1</d4p1:int>
<d4p1:int>2</d4p1:int>
</SourceIDs>
</Transaction>
</ReplicationCommand>
</ArrayOfReplicationCommand>
text/csv
Sample:
Sample not available.
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
Sample:
PK (��\N4h� 5 xl/workbook.xml � (� ����0��&�C���PR8q���{)�4П�5���H�yۙ��v�l��3����/]��lI�(�OƂ���8�C��EL�K�o:��|���ă4��z���ay�w~ jZQ�K���!�4{J�}����.&"k���X��I!�T��c��{W�F��qx\�-�6�yK��;���w�PK (��\���� � [Content_Types].xml � (� ���J�0�_��*M�D��V�*��d�
�d�k��<�H���V���=
��|�o��|����������+�����7l���e۶~=E�"�zlXO�@Ճ��C�3]HNR~���R��uU�<���������a��36��b7םQ
�1Z�$�8z�R��3
tP��-c�� g����_M��Of���~O�s�T���� ����P<�D��e=1Z��a2�b
��%#H'�2}���e�B)��~j/F�t��PK
(��\ݐ=+' ' _rels/.rels � (� <?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml" Id="R5d74105641d74a60" /></Relationships>PK (��\T�& y � xl/worksheets/sheet1.xml � (� ��Ko�0��
�~��G��j���M5��5�85�Ȑ�?BC0��&�;�������b}h[妜C�riVy�6�z�C���do�{�i]G/�+;Y]o���Zf�H��lu����i�^�[b��|��f�+tY'B�X�Ikת��m�վS��Z���)�c�"�K0��rW�0����ܠ��d6i�_��Wg��a%�y?�<�� 6l2�M�W��:�m�f���v&�F�4������`������:�"bB$g��� Z�������Q�[=>����AD�R�q=i��?���ӓ��b��ȭ�q=k��?�� ���q=o���C+�Đ1�/�'Z���"vK�RR���e����Ă(�njt��j����X*��b�ظ��
�
2FL`(�T�+@�-��{09n�f���:�M��G�v�O7�jN�; �;v38I>ږ��O�
�'�C���!A��bH�>�0$x�x�O<
�'����/�:S��)���"��� �}@<��ij�>�x^/�g�C ��~ ��O_H�%8<� wsPo�����e��^$���\�$���?� �G@�H�I �# ~$�ۑ��HF�=F��]]��N�vaL�ms���]fPK (��\��ڲ� P xl/_rels/workbook.xml.rels � (� ��KN�0@�b͞8 �㢦�tö��=N�&vd����G�
XE�Tb�������4����M#9���
Y�rz�]�hl7�=�2���s iņ��'J��q�!s3��1�O2��wt��(;�e�s��e��e���1�S� m�L_�?�19H�al��5Y�y�
�Y�U�+�2�Z��л��x1�z}��KYs#y������ң~�>]z�,/��Z�͊+�V�_���_l� PK (��\Ѓc'2 E
xl/styles.xml � (� �S�j�0��&0���0�^�]v��:��d;��H��Kj�vG�Mz�zOHr�iB8v �F��WEG�?s�Oh�lff�uZМ���ށh�R���6�'��2��������ɳ�UŦ`<Қo���x���8��K�6BC ^�کĖ��B���n��f8����9� ����CUk��#��U�ub��WUB;��k���&�
AR>��� ��im��ΑF���YO��%�}� ��LJ\in�,���9oy}��y.�$��6��ųNJ�c��T��rĘ)փBR淶�E3ʟ�\��q��PK (��\��^i Q xl/sharedStrings.xml � (� �SMO1�++���M�f9
�V�rBH�$1���EM}M�P�as�f�7O3�]]��&y�@ڻ�8�
���^i�����G: 18�;��-�H.ꊈ�(u4��<�In�e�E��8^�:�6 (� �5��(ƹ�D"}�8����s����[�����ʹ���d�b>�n�6}� �$����/`���}�7�FKx
]ٖ��ta�| ϣ
�j n��h�m���B�zFLJf��rU�d���Uz&��>�R�D��㲯���`�5Ĕ��q��`��z���Wh(kЁ�)��n�|$��m���%�so�Ԕ]�àev�w ������n�����H��� u80�u���� ���PK- (��\N4h� 5 xl/workbook.xmlPK- (��\���� � [Content_Types].xmlPK-
(��\ݐ=+' ' V _rels/.relsPK- (��\T�& y � � xl/worksheets/sheet1.xmlPK- (��\��ڲ� P � xl/_rels/workbook.xml.relsPK- (��\Ѓc'2 E
� xl/styles.xmlPK- (��\��^i Q M xl/sharedStrings.xmlPK �
application/vnd.ms-excel
Sample:
PK (��\��R� 5 xl/workbook.xml � (� ����0��&�C����N\�z�^�"
�'m
>��o�vfg�:k;�Z��#'�J[��{S�� ���6�®�V2�}���C��[��$M��X��Z�A�W�?,g,��
^N+J2�p}< D�fO��2[��Dd
�����"*���
7�3��s�*|�Ȗ"��YY��K��W��w%���PK (��\���� � [Content_Types].xml � (� ���J�0�_��*M�D��V�*��d�
�d�k��<�H���V���=
��|�o��|����������+�����7l���e۶~=E�"�zlXO�@Ճ��C�3]HNR~���R��uU�<���������a��36��b7םQ
�1Z�$�8z�R��3
tP��-c�� g����_M��Of���~O�s�T���� ����P<�D��e=1Z��a2�b
��%#H'�2}���e�B)��~j/F�t��PK
(��\���' ' _rels/.rels � (� <?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml" Id="R2a727fa52e514fed" /></Relationships>PK (��\T�& y � xl/worksheets/sheet1.xml � (� ��Ko�0��
�~��G��j���M5��5�85�Ȑ�?BC0��&�;�������b}h[妜C�riVy�6�z�C���do�{�i]G/�+;Y]o���Zf�H��lu����i�^�[b��|��f�+tY'B�X�Ikת��m�վS��Z���)�c�"�K0��rW�0����ܠ��d6i�_��Wg��a%�y?�<�� 6l2�M�W��:�m�f���v&�F�4������`������:�"bB$g��� Z�������Q�[=>����AD�R�q=i��?���ӓ��b��ȭ�q=k��?�� ���q=o���C+�Đ1�/�'Z���"vK�RR���e����Ă(�njt��j����X*��b�ظ��
�
2FL`(�T�+@�-��{09n�f���:�M��G�v�O7�jN�; �;v38I>ږ��O�
�'�C���!A��bH�>�0$x�x�O<
�'����/�:S��)���"��� �}@<��ij�>�x^/�g�C ��~ ��O_H�%8<� wsPo�����e��^$���\�$���?� �G@�H�I �# ~$�ۑ��HF�=F��]]��N�vaL�ms���]fPK (��\C��� P xl/_rels/workbook.xml.rels � (� ��KN�0@�b͞8��ࠦݰ���3��&�e����G�
XT�Tb�������4�����9��5
Y���h�N��ݬ�8ɘ&�] ińt��Ҡ4�2d֡I���YƔ��:��r@Z�yE���Lr�8������٪ӌ&�����F�@��)��,Q�����j^#oU�xU>�wS�2a������IQ�E�bEǑ��*����%�t�Ӳ�P�U.:&۲d���ћ��|PK (��\Ѓc'2 E
xl/styles.xml � (� �S�j�0��&0���0�^�]v��:��d;��H��Kj�vG�Mz�zOHr�iB8v �F��WEG�?s�Oh�lff�uZМ���ށh�R���6�'��2��������ɳ�UŦ`<Қo���x���8��K�6BC ^�کĖ��B���n��f8����9� ����CUk��#��U�ub��WUB;��k���&�
AR>��� ��im��ΑF���YO��%�}� ��LJ\in�,���9oy}��y.�$��6��ųNJ�c��T��rĘ)փBR淶�E3ʟ�\��q��PK (��\��^i Q xl/sharedStrings.xml � (� �SMO1�++���M�f9
�V�rBH�$1���EM}M�P�as�f�7O3�]]��&y�@ڻ�8�
���^i�����G: 18�;��-�H.ꊈ�(u4��<�In�e�E��8^�:�6 (� �5��(ƹ�D"}�8����s����[�����ʹ���d�b>�n�6}� �$����/`���}�7�FKx
]ٖ��ta�| ϣ
�j n��h�m���B�zFLJf��rU�d���Uz&��>�R�D��㲯���`�5Ĕ��q��`��z���Wh(kЁ�)��n�|$��m���%�so�Ԕ]�àev�w ������n�����H��� u80�u���� ���PK- (��\��R� 5 xl/workbook.xmlPK- (��\���� � [Content_Types].xmlPK-
(��\���' ' V _rels/.relsPK- (��\T�& y � � xl/worksheets/sheet1.xmlPK- (��\C��� P � xl/_rels/workbook.xml.relsPK- (��\Ѓc'2 E
� xl/styles.xmlPK- (��\��^i Q M xl/sharedStrings.xmlPK �