Add Society#
POST /api/society/addsociety
#
endpoint is used to add a new society.Request Body#
societyid
(text, required): society id (required)
bizid
(text, required): business id (required)
Response#
The response is in JSON format and has the following schema:{
"type": "object",
"properties": {
"status": {
"type": "boolean"
},
"message": {
"type": "string"
},
"data": {
"type": "string"
}
}
}
societyid
(text, required): society id (required)
bizid
(text, required): business id (required)
This endpoint is used to add a new society.Response#
The response is in JSON format and has the following schema:{
"status": {
"type": "boolean"
},
"message": {
"type": "string"
},
"data": {
"type": "string"
}
}
Request
Example:X-Token: ********************
Body Params multipart/form-data
Request Code Samples
curl --location --request POST '/api/society/addsociety' \
--header 'marchant-id: BIZ12354124' \
--form 'societyid="1"' \
--form 'bizid="1"'
Responses
application/json Modified at 2024-10-17 16:02:45