Delete shape item
DELETE/v2/boards/:board_id/shapes/:item_id
Deletes a shape item from the board.
Required scope
boards:writeRate limiting
Level 3Request
Path Parameters
board_id stringrequired
Unique identifier (ID) of the board from which you want to delete the item.
item_id stringrequired
Unique identifier (ID) of the item that you want to delete.
Responses
- 204
- 400
- 404
- 429
Shape item 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...