Body
This is the URL of the bookmark you want to create (Required)
This is the collection ID where the bookmark will be added (Optional)
Response
Indicates whether the call was successful. 1 if successful, 0 if not.
The contents of the user group Indicates whether a new user group was created.
This is the user group token (userGroupToken or USER_GROUP_TOKEN) that will be
used to identify which user group is viewing the dashboard. You should save
this on your end to use when rendering an embedded dashboard.
This is the name of the user group provided in the request body.
This is the user_group_id provided in the request body.
This is the properties object if it was provided in the request body
This is the environment tag of the user group. Possible values are ‘Customer’
and ‘Testing’
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"
}
}