Skip to main content
GET
/
bookmark
/
folder
/
{folderId}
/
posts
cURL
curl --request GET \
  --url https://our-secret-api-url.com/bookmark/folder/{folderId}/posts \
  --header 'Authorization: Bearer <token>'
[
  {
    "postId": "<string>",
    "title": "<string>",
    "content": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

folderId
number
required

Query Parameters

cursor
string<date-time>
size
number
default:10

Response

List of posts in the folder

postId
string
title
string
content
string