ResetIncrStartTimestamp

2025-10-09 03:34:24  Updated

This topic describes the ResetIncrStartTimestamp OpenAPI provided by OceanBase Migration Service (OMS): Modify the synchronization timestamp of forward and reverse incremental synchronization.

Purpose

This API is used to modify the synchronization timestamp of forward and reverse incremental synchronization.

Call description

Limitations

This API applies to OMS V4.3.0 and later.

Request path

POST /api/v2?Action=ResetIncrStartTimestamp

Request parameters

Parameter Type Description
id string The ID of the data migration or synchronization task.
reverse boolean Specifies whether to perform reverse incremental synchronization.
startTimestamp string The start timestamp of incremental synchronization.

Response parameters

Parameter Type Description
success boolean Specifies whether the call is successful.
errorDetail object Error details.
code string The error code. The value is null if the call is successful, and a value is returned if the call fails.
message string The error message. The value is null if the call is successful, and a value is returned if the call fails.
advice string Suggestions.
requestId string The request ID.
pageNumber integer The page number. This parameter is effective only when you perform paginated query.
pageSize integer The page size. This parameter is effective only when you perform paginated query.
totalCount integer The total number of records. This parameter is effective only when you perform paginated query.
cost string The time spent in processing the request, in seconds.
data integer The O&M ticket ID.

Examples

Request example

{
  "id":"np_4w3a****", 
  "reverse":false, 
  "startTimestamp":1742365118
}

Response example

{
    "success": true,
    "errorDetail": null,
    "code": null,
    "message": null,
    "advice": null,
    "requestId": "4717481****",
    "pageNumber": null,
    "pageSize": null,
    "totalCount": null,
    "cost": "10 ms",
    "data": 1
}

Contact Us