Edit Member Details#
This endpoint allows the business user to edit the details of a member.Request Body Parameters#
userid
(text, required): Unique userid from the business user's own list.
username
(text): Unique username from the business side.
useremail
(text, required): User email.
useraddress
(text, required): User address.
userphone
(text, required): User phone.
societyid
(text, required): Society id.
bizid
(text, required): Business id.
Response#
The response of this request is a JSON schema with the following properties:status
(boolean): Indicates the status of the request.
message
(string): Provides any additional message related to the request.
{
"status": true,
"message": ""
}
Request
Example:X-Token: ********************
Body Params multipart/form-data
Request Code Samples
curl --location --request POST '/api/members/editmember/' \
--header 'marchant-id: BIZ12354124' \
--form 'userid="3"' \
--form 'username="abc_user"' \
--form 'useremail="user@gmail.com"' \
--form 'useraddress="flat no. 5, abc socity name, Delhi, India"' \
--form 'userphone="9999999999"' \
--form 'societyid="1"' \
--form 'bizid="1"'
Responses
application/json Modified at 2024-10-17 16:02:45