Line Item Properties
Add line item property
Method: POST
URL: /quotes/1234/line_items/567/properties
The request will add new line item properties to the line item with the id of 567 on quote 1234
Required fields:
This endpoint expects to receive an array of line item objects.
This endpoint will return 200 OK with the current JSON representation of the line item properties if the creation was a success. See Get Properties endpoint for more info on the payload.
Example JSON request
Get line item property
Method: GET
URL: /quotes/1234/line_items/567/properties
this request will return the line item properties for the Line Item with the id of 567 on quote 1234
Example JSON response
Update line item property
Method: PUT
URL: /quotes/1234/line_items/567/properties/1
The request will update the line item property with the id of 1 in the quote with the id of 1234 and line item with the id of 567
This endpoint will return 200 OK with the current JSON representation of the Line Item Property if the update was a success.
Example JSON request
Delete line item property
Method: DELETE
URL: /quotes/1234/line_items/567/properties/1
The request will delete the line item property with the id of 1 from the quote with the id of 1234 and the line item with the id of 567
No parameters are required. Returns 200 OK if successful.