Delete
/api/v2/link/delete
Post
links
jwt
Purpose
To allow a user to delete one of his/her existing links.
Body Content [input]
{
uid: string,
linkID: string
}
Returns if valid [output]
{
error: 0,
message: string
}
What the API does
- Finds the
linkbeing referenced in thelinkscollection corresponding tolinkID[404]. - Removes that
linkfrom the collection and saves.