Retrieving the Process Status of Data Synchronization for a Specified ID in a Bucket
Updated at:2025-11-03
API description
This API retrieves the process status of data synchronous replication for a specified ID.
Request URI
GET /v1/{bucketName}/?replicationProgress
| Parameter name | Parameter type | Required or not | Description | Example value | Parameter location |
|---|---|---|---|---|---|
| bucketName | String | Yes | Bucket name | "bucketName_example" | Path |
| id | String | Yes | Rule ID | "id_example" | Query |
Parameters of request body
Description of the data structure of request body fields
Response body parameters
Description of the data structure of response body fields
| Parameter name | Parameter type | Description | Example value |
|---|---|---|---|
| status | String | It indicates whether data synchronization is enabled, with options of enabled and disabled | enabled |
| historyReplicationPercent | Integer | Percentage of historical file data synchronization completed. 0 will be returned when it is no longer valid. | 5 |
| latestReplicationTime | Integer | UNIX timestamp, indicating the time of the latest data replication. | 1504448315 |
Request example
JSON
1GET /v1/bucketName_example/?replicationProgress&id=id_example
2 <Common request headers>
3{ }
Response example
JSON
1HTTP/1.1 200 OK
2 <Common response headers>
3{
4 "latestReplicationTime" : 1504448315,
5 "historyReplicationPercent" : 5,
6 "status" : "enabled"
7}
Error code
Please refer to the general error codes
