Skip to main content
POST
/
v1
/
bookmarks
curl --location --request POST 'https://api.linkvite.io/v1/bookmarks' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data-raw '{
    "url": "https://example.com",
    "collection": "<collection_id>"
}'
{
  "success": 1,
  "user_group": {
    "team_id": 113,
    "token": "<user_group_token_to_auth_dashboard>",
    "name": "ok",
    "provided_id": "6"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.linkvite.io/llms.txt

Use this file to discover all available pages before exploring further.

Body

url
string
This is the URL of the bookmark you want to create (Required)
collection
string
This is the collection ID where the bookmark will be added (Optional)

Response

success
number
Indicates whether the call was successful. 1 if successful, 0 if not.
user_group
object
The contents of the user group
curl --location --request POST 'https://api.linkvite.io/v1/bookmarks' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data-raw '{
    "url": "https://example.com",
    "collection": "<collection_id>"
}'
{
  "success": 1,
  "user_group": {
    "team_id": 113,
    "token": "<user_group_token_to_auth_dashboard>",
    "name": "ok",
    "provided_id": "6"
  }
}