| Create Customer Attachment | |
| URL | /CustomerAttachment |
| Method | POST |
| Body |
{ |
| Response |
HTTP/1.1 200 OK
{ |
| Comments |
|
| Update Customer Attachment | |
| URL | /CustomerAttachment/{customerAttachmentId} |
| Method | PUT |
| Body |
{ |
| Response |
HTTP/1.1 200 OK
{ |
| Comments |
| Get Customer Attachments | |
| URL | /CustomerAttachment/{customerId}/{page}/{size} |
| Method | GET |
| Body |
|
| Response |
HTTP/1.1 200 OK
[ |
| Comments |
| Upload Customer Attachment | |
| URL | /CustomerAttachment/Stream/{customerAttachmentId} |
| Method | PUT |
| Body |
{file content} |
| Response |
HTTP/1.1 200 OK
{ |
| Comments |
|
| Download Customer Attachment | |
| URL | /CustomerAttachment/Stream/{customerAttachmentId} |
| 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 Customer Attachment | |
| URL | /CustomerAttachment/{customerAttachmentId} |
| Method | DELETE |
| Body |
|
| Response |
HTTP/1.1 200 OK
{ |
| Comments |
|