Delete Worksheet Hyperlink

This REST API deletes a worksheet hyperlink by its index on an Excel worksheet.

REST API

DELETE https://api.aspose.cloud/v3.0/cells/{name}/worksheets/{sheetName}/hyperlinks/{hyperlinkIndex}

Request Parameters

Parameter Name Type Location Required Description
name string path Name of the Excel document.
sheetName string path Name of the worksheet.
hyperlinkIndex integer path Zero‑based index of the hyperlink to delete.
folder string query Folder containing the document (default: root).
storageName string query Name of the storage service (default storage used if omitted).

Responses

Status Code Description Example Body
200 OK Hyperlink deleted successfully. {"Code":200,"Status":"OK"}
400 Bad Request Missing or invalid parameters. {"Code":400,"Message":"Invalid hyperlinkIndex."}
401 Unauthorized Authentication token is missing or invalid. {"Code":401,"Message":"Invalid access token."}
404 Not Found The file, worksheet, or hyperlink index does not exist. {"Code":404,"Message":"Resource not found."}
500 Internal Server Error Unexpected server error. {"Code":500,"Message":"Internal server error."}

The OpenAPI Specification defines a publicly accessible programming interface and lets you perform REST interactions directly from a web browser.

You can use the cURL command‑line tool to access Aspose.Cells web services easily. The example below shows how to call the API with cURL.

Cloud SDK Family

Using an SDK is the fastest way to develop. An SDK handles low‑level details so you can focus on your project. Please check the GitHub repository for a complete list of Aspose.Cells Cloud SDKs.

The following code examples demonstrate how to call Aspose.Cells web services using various SDKs. Inline snippets are provided for reliability; a link to the original Gist is kept for reference.