Skip to main content

List all posts for authenticated user

get/v1/social/posts

List all posts for authenticated user

Request

Parameters

NameInTypeDescription
per_pagequerystringNo description

Responses

200No description
Schema Structure
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "array",
"items": {},
"title": "LengthAwarePaginator"
},
"meta": {
"type": "object",
"properties": {
"current_page": {
"type": "integer"
},
"last_page": {
"type": "integer"
},
"per_page": {
"type": "integer"
},
"total": {
"type": "integer"
}
},
"required": [
"current_page",
"last_page",
"per_page",
"total"
]
}
},
"required": [
"success",
"data",
"meta"
]
}