cURL
curl --request PATCH \ --url https://our-secret-api-url.com/bookmark \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'X-API-KEY: <x-api-key>' \ --data ' { "postId": "123", "newFolderId": 2 } '
{ "success": true, "message": "<string>" }
Reassign a bookmark to a new folder
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
API key required for authentication
"123"
2
Bookmark reassigned successfully