Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 1.71 KB

bulkdeletelinksrequest.md

File metadata and controls

20 lines (15 loc) · 1.71 KB

BulkDeleteLinksRequest

Example Usage

import { BulkDeleteLinksRequest } from "dub/models/operations";

let value: BulkDeleteLinksRequest = {
  linkIds: [
    "clux0rgak00011...",
    "clux0rgak00022...",
  ],
};

Fields

Field Type Required Description Example
linkIds string[] ✔️ Comma-separated list of link IDs to delete. Maximum of 100 IDs. Non-existing IDs will be ignored. [
"clux0rgak00011...",
"clux0rgak00022..."
]