POST api/creditNote/{id}/detail/{guid}/receive
Save a credit detail receive record
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Credit note identifier |
globally unique identifier |
Required |
| guid |
Credit detail identifier |
globally unique identifier |
Required |
Body Parameters
Credit detail receive to be saved
CreditDetailReceive| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| CreditNoteIdentifier | Collection of byte |
None. |
|
| CreditNoteIdentifierGuid | globally unique identifier |
None. |
|
| CreditDetailIdentifier | Collection of byte |
None. |
|
| CreditDetailIdentifierGuid | globally unique identifier |
None. |
|
| PLUG_UID | Collection of byte |
None. |
|
| PluGuid | globally unique identifier |
None. |
|
| Image | string |
None. |
|
| Taken | date |
None. |
|
| UploadNew |
When true, if extension and picture are provided, will upload and save file |
boolean |
Relation. This field may not always be loaded or used for updates. |
| Extension | string |
Relation. This field may not always be loaded or used for updates. |
|
| ImageEncodedString |
Base64 Encoded image string |
string |
Relation. This field may not always be loaded or used for updates. |
| PictureStream |
Only used for sending credit notes |
Stream |
Relation. This field may not always be loaded or used for updates. |
| Notes |
Notes to add to the credit detail line |
string |
Relation. This field may not always be loaded or used for updates. |
Request Formats
application/json, text/json
{
"id": 1,
"creditNoteIdentifier": "32S+Jmdj/0mgtT096rYg0w==",
"creditNoteIdentifierGuid": "26be64df-6367-49ff-a0b5-3d3deab620d3",
"creditDetailIdentifier": "A7F7dvQASESHbMBTx72pXw==",
"creditDetailIdentifierGuid": "767bb103-00f4-4448-876c-c053c7bda95f",
"pluG_UID": "AZYzIf/HL0Wdc9yRDQ28Ng==",
"pluGuid": "21339601-c7ff-452f-9d73-dc910d0dbc36",
"image": "sample string 1",
"taken": "2026-06-03T18:35:53.762017",
"uploadNew": true,
"extension": "sample string 3",
"imageEncodedString": "sample string 4",
"notes": "sample string 5"
}
application/xml, text/xml
<CreditDetailReceive xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.CreditNotes"> <CreditDetailIdentifier>A7F7dvQASESHbMBTx72pXw==</CreditDetailIdentifier> <CreditDetailIdentifierGuid>767bb103-00f4-4448-876c-c053c7bda95f</CreditDetailIdentifierGuid> <CreditNoteIdentifier>32S+Jmdj/0mgtT096rYg0w==</CreditNoteIdentifier> <CreditNoteIdentifierGuid>26be64df-6367-49ff-a0b5-3d3deab620d3</CreditNoteIdentifierGuid> <Extension>sample string 3</Extension> <ID>1</ID> <Image>sample string 1</Image> <ImageEncodedString>sample string 4</ImageEncodedString> <Notes>sample string 5</Notes> <PLUG_UID>AZYzIf/HL0Wdc9yRDQ28Ng==</PLUG_UID> <PictureStream xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.IO" i:nil="true" /> <PluGuid>21339601-c7ff-452f-9d73-dc910d0dbc36</PluGuid> <Taken>2026-06-03T18:35:53.762017+00:00</Taken> <UploadNew>true</UploadNew> </CreditDetailReceive>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
None.