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"
  }
}

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"
  }
}