Skip to content

Retrieve the User who Reacted to the Photo

GET api/gallery/comment/reactions/{comment_reaction_id}

This is used to retrieve the list of users who reacted to the gallery photo.

Example Request

Terminal window
curl -X 'GET' \
'http://localhost:8080/api/gallery/comment/reactions/<comment_reaction_id>?page=<page>&page_length=<page_length>' \
-H 'accept: application/json' \
-H 'Authorization: Bearer YOUR_TOKEN'

Parameters

comment_reaction_id

Type: Path
Data Type: Integer
Required: Yes
Description: The unique identifier of the gallery photo reaction

page

Type: Query
Data Type: Integer
Required: Yes
Description: The current page number in the pagination

page_length

Type: Query
Data Type: Integer
Required: Yes
Description: The number of items displayed per page in the pagination

Responses

200 - OK

The request was successful

Content Type: application/json
Content: Gallery Comment Reacted Users

{
"current_page": 0,
"data": [
{
"id": 0,
"user": {
"id": 0,
"user_first_name": "string",
"user_middle_name": "string",
"user_last_name": "string",
"user_username": "string",
"user_avatar_url": "string",
"user_visible": "string"
},
"created_at": "2025-01-08T06:31:44.438Z",
"updated_at": "2025-01-08T06:31:44.438Z",
}
],
"first_page_url": "string",
"from": 0,
"next_page_url": "string",
"path": "string",
"per_page": "string",
"prev_page_url": "string",
"to": 0
}

400 - Bad Request

Validation Error

Content Type: application/json
Content:

{
"param_name": [
"string"
],
"param_name_2": [
"string"
],
"error_message": "User is not authorized to react to this comment."
}

401 - Unauthorized

The request requires valid bearer token, but none were provided, or the bearer token is invalid.

404 - Not Found

The server could not find the requested resource.

Content Type: text/plain
Content:

Comment reaction not found!

429 - Too Many Requests

The user has exceeded the rate limit of 240 requests per minute.

500 - Internal Server Error

There is an issue with the backend. Sentry will provide a more detailed report on the problem.