Skip to main content

Delete Embedded Links

tip

The Embedded Links are only available for the spaces on the paid Pro or higher plan in AITable Cloud as well as Enterprise self-hosted edition.

Example

Here is an example of calling API to delete an embedded link of a datasheet.

To delete an embedded link of a datasheet in the space, follow the steps below:

  1. Obtain your API token. (how to)

  2. Obtain the spaceId. (how to)

  3. Obtain the datasheetId. (how to)

  4. Obtain the ID of embedded link. (how to)

  5. Open your system terminal, copy and paste following code on it and make a request to AITable server (the example space ID here is spcjXzqVrjaP3, datasheetId is dstWUHwzTHd2YQaXEE, and linkId is embb90a52cfc02a4f83)

    curl -X DELETE \
    "https://api.apitable.cn/fusion/v1/spaces/spcjXzqVrjaP3/nodes/dstWUHwzTHd2YQaXEE/embedlinks/embb90a52cfc02a4f83" \
    -H "Authorization: Bearer {Your API Token}"
  6. The response result:

    {
    "code": 200,
    "success": true,
    "message": "SUCCESS"
    }
    tip

    For the meaning of each parameter in the response result above, please check the API Reference