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": "OU3zr1ik8kKIPQrCIdWesA==",
"creditNoteIdentifierGuid": "aff34d39-a458-42f2-883d-0ac221d59eb0",
"creditDetailIdentifier": "+mgSRM1kRUyGHaWQC1gJzw==",
"creditDetailIdentifierGuid": "441268fa-64cd-4c45-861d-a5900b5809cf",
"pluG_UID": "wVr3hrApWkWMZ9BHA3h9lw==",
"pluGuid": "86f75ac1-29b0-455a-8c67-d04703787d97",
"image": "sample string 1",
"taken": "2026-04-02T13:43:46.6549694",
"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>+mgSRM1kRUyGHaWQC1gJzw==</CreditDetailIdentifier> <CreditDetailIdentifierGuid>441268fa-64cd-4c45-861d-a5900b5809cf</CreditDetailIdentifierGuid> <CreditNoteIdentifier>OU3zr1ik8kKIPQrCIdWesA==</CreditNoteIdentifier> <CreditNoteIdentifierGuid>aff34d39-a458-42f2-883d-0ac221d59eb0</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>wVr3hrApWkWMZ9BHA3h9lw==</PLUG_UID> <PictureStream xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.IO" i:nil="true" /> <PluGuid>86f75ac1-29b0-455a-8c67-d04703787d97</PluGuid> <Taken>2026-04-02T13:43:46.6549694+00:00</Taken> <UploadNew>true</UploadNew> </CreditDetailReceive>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
None.