Add Member to group
POST/api/groups/2/members/add
Add Member to group
Request
- application/json
Body
required
participants string[]required
Responses
- 200
- 403
- 404
- 422
OK
Response Headers
Date any
Server any
Vary any
X-Powered-By any
Cache-Control any
X-RateLimit-Limit any
X-RateLimit-Remaining any
phpdebugbar-id any
Content-Length any
Keep-Alive any
Connection any
- application/json
- Schema
- Example (from schema)
- Example
Schema
code int32required
message stringrequired
{
"code": 200,
"message": "Success adding participants to group"
}
{
"code": 200,
"message": "Success adding participants to group"
}
General Forbidden Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
Forbidden
message string
HTTP Status Message
{
"status": 403,
"message": "Forbidden"
}
General Not Found Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
Not Found
message string
HTTP Status Message
{
"status": 404,
"message": "Not Found"
}
General Validation Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
HTTP Status Code
message string
HTTP Status Message
errors string[]
{
"status": 422,
"message": "Validation Error ",
"errors": [
"string"
]
}
Loading...