POST api/invoice/{id}/detail/{guid}/receive

Post an image for an invoice detail

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Invoice identifier

globally unique identifier

Required

guid

Detail identifier

globally unique identifier

Required

Body Parameters

Receive image information to save

InvoiceDetailReceive
NameDescriptionTypeAdditional information
ID

integer

None.

HeaderIdentifier

Collection of byte

None.

HeaderIdentifierGuid

globally unique identifier

None.

DetailIdentifier

Collection of byte

None.

DetailIdentifierGuid

globally unique identifier

None.

PLUG_UID

Collection of byte

None.

PluGuid

globally unique identifier

None.

Image

string

None.

Taken

date

None.

Extension

string

Relation. This field may not always be loaded or used for updates.

ImageEncodedString

string

Relation. This field may not always be loaded or used for updates.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "headerIdentifier": "M4nWjGCL0U2+JNj4pqW2gA==",
  "headerIdentifierGuid": "8cd68933-8b60-4dd1-be24-d8f8a6a5b680",
  "detailIdentifier": "fylpgXtWX0W6IRBb5izofg==",
  "detailIdentifierGuid": "8169297f-567b-455f-ba21-105be62ce87e",
  "pluG_UID": "hIbkFvFfgU2O9gs9+iYDYw==",
  "pluGuid": "16e48684-5ff1-4d81-8ef6-0b3dfa260363",
  "image": "sample string 1",
  "taken": "2025-06-14T07:22:46.9652889",
  "extension": "sample string 2",
  "imageEncodedString": "sample string 3"
}

application/xml, text/xml

Sample:
<InvoiceDetailReceive xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Invoices">
  <DetailIdentifier>fylpgXtWX0W6IRBb5izofg==</DetailIdentifier>
  <DetailIdentifierGuid>8169297f-567b-455f-ba21-105be62ce87e</DetailIdentifierGuid>
  <Extension>sample string 2</Extension>
  <HeaderIdentifier>M4nWjGCL0U2+JNj4pqW2gA==</HeaderIdentifier>
  <HeaderIdentifierGuid>8cd68933-8b60-4dd1-be24-d8f8a6a5b680</HeaderIdentifierGuid>
  <ID>1</ID>
  <Image>sample string 1</Image>
  <ImageEncodedString>sample string 3</ImageEncodedString>
  <PLUG_UID>hIbkFvFfgU2O9gs9+iYDYw==</PLUG_UID>
  <PluGuid>16e48684-5ff1-4d81-8ef6-0b3dfa260363</PluGuid>
  <Taken>2025-06-14T07:22:46.9652889+00:00</Taken>
</InvoiceDetailReceive>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.