Retrieve list of the current Lnks in your account
GET
/lnk/listReturns an array of Lnks
Request
None
Request samples
Responses
Success(200)
Not Authenticated(401)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
status
boolean
optional
Example:
true
errors
array[string]
optional
data
array [object {5}]
optional
created_at
string
optional
Example:
2024-02-12T15:17:44+08:00
title
string
optional
Example:
My Blog Post
image
string
optional
Example:
https://cdn2.lnk.bi/profilepics/3159524853_20231206705.png
link
string
optional
Example:
https://myblog.com/post_id
meta
object
optional
Example
{
"status": true,
"errors": [
null
],
"data": [
{
"created_at": "2024-02-12T15:17:44+08:00",
"title": "My Blog Post",
"image": "https://cdn2.lnk.bi/profilepics/3159524853_20231206705.png",
"link": "https://myblog.com/post_id",
"meta": {
"id": 1234,
"timestamp": 1707722264
}
}
]
}
Last modified: 7 months ago