Skip to main content
GET
/
api
/
finds
/
{findId}
/
comments
Get comments for a find
curl --request GET \
  --url https://serengo.zias.be/api/finds/{findId}/comments \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "content": "<string>",
    "userId": "<string>",
    "findId": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "user": {
      "id": "<string>",
      "username": "<string>",
      "profilePicture": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

findId
string
required

Response

200 - application/json

Comments

id
string
content
string
userId
string
findId
string
createdAt
string<date-time>
user
object