URL:
https://<knowledgegraphservice-url>/replicas
Methods:
GET
Operations:
Create Replica, Synchronize Replica, Unregister Replica
Child Resources:
Replica Info
Version Introduced:
12.1

Description

The replicas resource lists all accessible replicas that have been created on the knowledge graph service. This list includes the replica name, replica ID and last sync date of each replica. All replicas are listed when logged in as the admin user. Otherwise, only replicas created by the logged-in user are listed.

Request parameters

ParameterDetails

f

The response format. The default format is html.

Values: html | pbf

Example usage

The following is a sample request URL used to access the replicas resource for a knowledge graph service named FieldService:

https://organization.example.com/<context>/rest/services/Hosted/FieldService/KnowledgeGraphServer/replicas

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
{
  "ReplicasResponse": {
    "replicas": [
        {
          "replicaId": <bytes>,
          "replicaName": <string>,
          "lastSyncDate": <int64>
        }
    ]
  }
}

JSON Response example

The below response demonstrates the information returned:

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "ReplicasResponse": {
    "replicas": [
        {
          "replicaId": "12345abc-abcd-ef12-5555-012345670000",
          "replicaName": "MyNewReplicaTest0000",
          "lastSyncDate": "1746205600150"
        },
        {
          "replicaId": "00000000-aaaa-bbbb-cccc-111111111111",
          "replicaName": "MyKGSReplica",
          "lastSyncDate": "1729198071218"
        }
    ]
  }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.