Follow Management
Manage follow and unfollow operations between Buyers and Sellers
POST
/customers/followToggle Follow Status
Toggle follow/unfollow status between seller and buyer
Request Body
Request
{
"sellerId": "Seller_123",
"buyerId": "Buyer_456"
}Response
Response (200 OK)
{
"data": {
"sellerId": "Seller_123",
"buyerId": "Buyer_456",
"isFollowing": true,
"followStatus": "Following",
"followedAt": "2025-10-08T10:00:00Z"
},
"message": "Follow status updated successfully",
"success": true
}