GET /api/bookmarks
List all bookmarks

Params

Param name Description
page
optional

paginate results


Value: Must be String
per_page
optional

number of entries per request


Value: Must be String

GET /api/bookmarks/:id
Show a bookmark

Params

Param name Description
id
required

Value: Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.

POST /api/bookmarks
Create a bookmark

Params

Param name Description
bookmark
required

Value: Must be a Hash
bookmark[name]
required

Value: Must be String
bookmark[controller]
required

Value: Must be String
bookmark[query]
required

Value: Must be String
bookmark[public]
optional , nil allowed

Value: Must be 'true' or 'false'

PUT /api/bookmarks/:id
Update a bookmark

Params

Param name Description
id
required

Value: Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.
bookmark
required

Value: Must be a Hash
bookmark[name]
optional

Value: Must be String
bookmark[controller]
optional

Value: Must be String
bookmark[query]
optional

Value: Must be String
bookmark[public]
optional , nil allowed

Value: Must be 'true' or 'false'

DELETE /api/bookmarks/:id
Delete a bookmark

Params

Param name Description
id
required

Value: Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.