Create Quote Attachment | |
URL | /QuoteAttachment |
Method | POST |
Body |
{ |
Response |
HTTP/1.1 200 OK
{ |
Comments |
|
Update Quote Attachment | |
URL | /QuoteAttachment/{quoteAttachmentId} |
Method | PUT |
Body |
{ |
Response |
HTTP/1.1 200 OK
{ |
Comments |
Get Quote Attachments | |
URL | /QuoteAttachment/{quoteId}/{page}/{size} |
Method | GET |
Body |
|
Response |
HTTP/1.1 200 OK
[ |
Comments |
Upload Quote Attachment | |
URL | /QuoteAttachment/Stream/{quoteAttachmentId} |
Method | PUT |
Body |
{file content} |
Response |
HTTP/1.1 200 OK
{ |
Comments |
|
Download Quote Attachment | |
URL | /QuoteAttachment/Stream/{quoteAttachmentId} |
Method | GET |
Body |
|
Response |
HTTP/1.1 200 OK
{file content} |
Comments |
This downloads a binary stream of data. You will need to save the data to a file with the appropriate filetype in order to open the attachment. |
Delete Quote Attachment | |
URL | /QuoteAttachment/{quoteAttachmentId} |
Method | DELETE |
Body |
|
Response |
HTTP/1.1 200 OK
{ |
Comments |
|