Delete a Paging Group

Delete a paging group.

Request URL

GET {base_url}/{api_path}/paging/delete?id={id}&access_token={access_token}

Request parameters

Parameter Required Type Description
id Yes Integer The unique ID of the paging group.
Note: You can query the paging group's ID using Search Specific Paging Groups interface.

Response parameters

Parameter Type Description
errcode Integer Returned error code.
  • 0: Succeed.
  • Non-zero value: Failed.
Note: You can check the error code and error message in Error Code and Error Message.
errmsg String Returned message.
  • SUCCESS: Succeed.
  • FAILURE: Failed.

Examples

Request example

Delete a paging group (id:1).

GET /openapi/v1.0/paging/delete?id=1&access_token=J56lhzhhEMQC2ZcXSFn3QOaDQ73r7k7o HTTP/1.1
Host: 192.168.5.150:8088

Response example

HTTP/1.1 200 OK
{
    "errcode": 0,
    "errmsg": "SUCCESS"
}