StopProjectModifyRecords

2025-10-09 03:34:24  Updated

This topic describes the StopProjectModifyRecords API provided by OceanBase Migration Service (OMS).

Purpose

You can call this operation to stop a modification operation based on the modification record ID.

Call description

Limitations

This operation is supported in OMS V4.2.2 and later.

Request path

POST /api/v2?Action=StopProjectModifyRecords

Request parameters

Parameter Type Description
id string The ID of the modification record.

Response parameters

Parameter Type Description
success boolean Indicates whether the call is successful.
errorDetail object The error details.
code string The error code.
message string The error description.
advice string The suggestions about how to resolve the error.
requestId string The request ID.
pageNumber integer The number of the page to return.
pageSize integer The number of entries to return on each page.
totalCount long The total number of entries returned.
cost string The time spent in processing the request, in seconds.
data any The return result of the request.

Examples

Request example

{
  "id": "45"
}

Response example

{
    "success": true,
    "errorDetail": null,
    "code": null,
    "message": null,
    "advice": null,
    "requestId": "E3D924FB-52****B253-0C1A7EFB778C",
    "pageNumber": 1,
    "pageSize": 10,
    "totalCount": 100,
    "cost": "1089 ms",
    "data": null
}

Contact Us