Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

POST httpPOST http://IP-address:port/prefix/archive/contents/bookmarks/create

The request body must contain the JSON with the begins_at, ends_atcomment, is_protectedendpoint and storage_id parameters (see Get bookmarks from archive):

Code Block
[
	{
		"begins_at":"20190226T102523.000",
		"comment":"text",
		"ends_at":"20190226T102646.000",
		"is_protected":true, 
		"endpoint":"hosts/Server1/DeviceIpint.1/SourceEndpoint.video:0:0",
		"storage_id":"hosts/Server1/MultimediaStorage.AliceBlue/MultimediaStorage"
	}
]

...

Note
titleAttention!

A group bookmark in a GET request (see Get bookmarks from archive) will look like several bookmarks with different endpoint and storage_id parameters.

To edit a group bookmark (see Edit bookmarks), it is necessary to edit all single bookmarks at the same time, and make sure that all their other parameters except endpoint and storage_id match.

...