Remove board member
DELETE/v2/boards/:board_id/members/:board_member_id
Removes a board member from a board.
Required scope
boards:writeRate limiting
Level 2Request
Path Parameters
board_id stringrequired
Unique identifier (ID) of the board from which you want to delete an item.
board_member_id stringrequired
Unique identifier (ID) of the board member whose role you want to delete.
Responses
- 204
- 400
- 404
- 429
Board member deleted
- application/json
- Schema
- Example (from schema)
Schema
object
{}
Malformed request
- application/json
- Schema
- Example (from schema)
Schema
code string
Code of the error
message string
Description of the error
status int32
Status code of the error
type string
Type of the error
{
"code": "error",
"message": "Error message",
"status": 400,
"type": "error"
}
Not found
- application/json
- Schema
- Example (from schema)
Schema
code string
Code of the error
message string
Description of the error
status int32
Status code of the error
type string
Type of the error
{
"code": "error",
"message": "Error message",
"status": 400,
"type": "error"
}
Too many requests
- application/json
- Schema
- Example (from schema)
Schema
code string
Code of the error
message string
Description of the error
status int32
Status code of the error
type string
Type of the error
{
"code": "error",
"message": "Error message",
"status": 400,
"type": "error"
}
Loading...