cURL
curl --request POST \ --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", "folderId": 1 } '
{ "success": true, "message": "<string>" }
Add or remove a bookmark
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
API key required for authentication
"123"
1
Bookmark added or removed successfully