POST/projects/api/v3/quote/:quoteId/lineitems/bulk/delete

Deletes quote line items.

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 OK
    QuoteLineItemResponse contains information about a specific quote lineitem.
  • Code
    400
    Type
    object
    Schema
    Description
    400 Bad Request
    ErrorResponse defines how []Error should be marshaled to JSON.

Examples

200 OK

QuoteLineItemResponse
{
  "quotelineitem": {
    "amount": 0,
    "assignee": {
      "id": 0,
      "meta": {},
      "type": "string"
    },
    "assigneeId": 0,
    "assigneeName": "string",
    "description": "string",
    "id": 0,
    "quantity": 0,
    "quoteId": 0,
    "rate": 0,
    "title": "string"
  }
}