My Project
  1. Town Hall
My Project
  • OUTBACK APIs
    • User
      • Create User
      • Login User
      • Forgot Password
      • Validate otp
      • Reset Password
      • Social login
      • Search Post
      • Update User
      • Get Profile
      • Get User Profile for Web
      • Delete Account
      • Logout
      • Get All Users
      • Update FCM TOKEN
      • Verify User
      • Follow Unfollow User
      • Get User Connections
    • 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
      • Create Chatroom
      • Send Message
      • Get Messages
      • Get ChatRoom
      • Update block status
      • Delete Message
    • Town Hall
      • Add townhall post
        POST
      • get town hall post
        GET
      • get specific user townhall post
        GET
      • reaction on townhall post
        PUT
      • Add replies
        POST
      • get replies
        GET
      • Reaction On reply
        PUT
      • get Location search
        GET
      • Report Townhall post
        POST
    • notfication
      • message notfication
      • message notfication
    • Category
      • Update Category
      • Get Model By Makes
      • get category V2
      • Add Category
      • Add subcategory
      • Get Categories
      • Delete Category
    • Payments
      • Add Card
      • Get Cards
      • Top up Wallet
      • Get Transaction History
      • View Wallet balence
      • Make Payments
      • Update Default Card
      • Add Bank Account
      • Update Bank Account
      • Withdraw to Bank Acc
    • PAYMENTS APIS
      • Create Setup Intent
      • Save Payment Method
      • For getting test payment Id
      • View Balance
      • Add funds to Account
      • Add Bank Account
      • Get User Bank Accounts
      • Select Default Bank Acc
  1. Town Hall

get replies

GET
/reply-mgt/get-replies

Request

Query Params
townhall_post_id
string 
required
Example:
6720e58a27cd0ff1288ca95d
Header Params
Authorization
string 
required
Example:
bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiI2NmVkNDI0Zjk5NDgyZDNmMzFmZWYzNDMiLCJpYXQiOjE3MzAyMDczOTMsImV4cCI6MTc2MTc2NDk5M30.ZSRwoBpXZfgNVFjQTTKeHrDnAr4qB89vOxwVrlA2sF0
Body Params application/json
object {0}
Example
{}

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 GET 'http://13.239.78.144:3000/api/v1/reply-mgt/get-replies?townhall_post_id=6720e58a27cd0ff1288ca95d' \
--header 'Authorization: bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiI2NmVkNDI0Zjk5NDgyZDNmMzFmZWYzNDMiLCJpYXQiOjE3MzAyMDczOTMsImV4cCI6MTc2MTc2NDk5M30.ZSRwoBpXZfgNVFjQTTKeHrDnAr4qB89vOxwVrlA2sF0' \
--header 'Content-Type: application/json' \
--data-raw '{}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "status": 1,
    "statusCode": 200,
    "message": "Replies fetched successfully",
    "data": [
        {
            "_id": "6836b143b0dfd0b020c088e2",
            "townhall_post_id": "6836b132b0dfd0b020c088dc",
            "reply_text": "helloo",
            "createdAt": "2025-05-28T06:46:27.449Z",
            "updatedAt": "2025-05-28T07:51:51.082Z",
            "__v": 0,
            "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": ""
                    }
                }
            ],
            "profile_photo_url": null,
            "name": "naveed"
        }
    ]
}
Modified at 2025-05-28 11:21:40
Previous
Add replies
Next
Reaction On reply
Built with