GET /api/bookmarks
List all bookmarks.

參數

參數名字 描述
page
選填

編頁結果


Value:

Must be String

per_page
選填

每個請求的項目數量


Value:

Must be String


GET /api/bookmarks/:id
Show a bookmark.

參數

參數名字 描述
id
必填

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.

參數

參數名字 描述
bookmark
必填

Value:

Must be a Hash

bookmark[name]
必填

Value:

Must be String

bookmark[controller]
必填

Value:

Must be String

bookmark[query]
必填

Value:

Must be String

bookmark[public]
選填

Value:

Must be 'true' or 'false'


PUT /api/bookmarks/:id
Update a bookmark.

參數

參數名字 描述
id
必填

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
必填

Value:

Must be a Hash

bookmark[name]
選填

Value:

Must be String

bookmark[controller]
選填

Value:

Must be String

bookmark[query]
選填

Value:

Must be String

bookmark[public]
選填

Value:

Must be 'true' or 'false'


DELETE /api/bookmarks/:id
Delete a bookmark.

參數

參數名字 描述
id
必填

Value:

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