- 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
| Parameter | Details |
|---|---|
| The response format. The default format is Values: |
Example usage
The following is a sample request URL used to access the replicas resource for a knowledge graph service named Field:
https
JSON Response syntax
{
"ReplicasResponse": {
"replicas": [
{
"replicaId": <bytes>,
"replicaName": <string>,
"lastSyncDate": <int64>
}
]
}
}JSON Response example
The below response demonstrates the information returned:
{
"ReplicasResponse": {
"replicas": [
{
"replicaId": "12345abc-abcd-ef12-5555-012345670000",
"replicaName": "MyNewReplicaTest0000",
"lastSyncDate": "1746205600150"
},
{
"replicaId": "00000000-aaaa-bbbb-cccc-111111111111",
"replicaName": "MyKGSReplica",
"lastSyncDate": "1729198071218"
}
]
}
}