- OUTBACK APIs
- User
- Post
- Get Popular Categories Post
- Add Post
- Update Post
- Get Post
- Get My Post
- Detail Post By Id
- Get Trending Posts
- Get Most Viewed Post
- get specfic user post
- Record Fav_Unfav post
- Get Favt Post
- Record Views
- All Posts Views
- Add Comment
- Get Comments
- Get Collection List
- Get Post Collection
- Remove Collection
- Soft Delete Post
- Delete Post
- Update Sold Type
- report post
- update thumnail of posts
- ChatRoom/Messages
- Town Hall
- notfication
- Category
- Payments
- PAYMENTS APIS
Reaction On reply
PUT
/reply-mgt/add-reaction-on-reply
Request
Query Params
reply_id
string
optional
Header Params
Authorization
string
required
Example:
bearer {{accessToken}}
Body Params application/xml
object {0}
Example
{
emoji:""
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'http://13.239.78.144:3000/api/v1/reply-mgt/add-reaction-on-reply?reply_id' \
--header 'Authorization: bearer ' \
--header 'Content-Type: application/xml' \
--data-raw '{
emoji:""
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{
"status": 1,
"statusCode": 200,
"message": "Reaction added/updated successfully",
"data": {
"_id": "6836b143b0dfd0b020c088e2",
"reactions": [
{
"emoji": "💕",
"createdAt": "2025-05-28T07:16:18.026Z",
"user": {
"_id": "682c2adf9314812d913ddf7a",
"name": "naveed",
"profile_photo_url": ""
}
},
{
"emoji": "❤️",
"createdAt": "2025-05-28T07:51:51.081Z",
"user": {
"_id": "682c2ad49314812d913ddf73",
"name": "nazish",
"profile_photo_url": ""
}
}
]
}
}
Modified at 2025-05-28 11:16:13