Delete Public Link

delete

/documents/api/1.2/publiclinks/{linkId}

Delete a specific public link.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

The request was fulfilled.

Body ()
Root Schema : PublicLinkDeleteResponse
Type: object
The response body includes information about the deleted public link.
Show Source
Example Response (application/json)
{
    "linkID":"LD86738D81BB59C8FA9A9497T0000000000100000001",
    "type":"publiclink",
    "errorCode":"0"
}

400 Response

Request parameters are not formatted correctly.

403 Response

Forbidden if the user does not have read permission.

404 Response

Link ID is not found.

Back to Top

Examples

The following example deletes the specified public link.

DELETE .../publiclinks/LD86738D81BB59C8FA9A9497T0000000000100000001

Request Header

None.

Request Body

None.

HTTP Status Code

HTTP_STATUS = 200

JSON Response

{
    "errorCode": "0",
    "linkID": "LD86738D81BB59C8FA9A9497T0000000000100000001",
    "type": "publiclink"
}
Back to Top