POST api/invoices/batch
Request Information
URI Parameters
None.
Body Parameters
InvoiceBatchDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| InvoiceBatchId | globally unique identifier |
None. |
|
| SFId | string |
None. |
|
| AccountIdOwner | string |
None. |
|
| DatetimePosted | date |
None. |
|
| FundingTypeId | globally unique identifier |
None. |
|
| BatchNumber | string |
None. |
|
| Amount | decimal number |
None. |
|
| Notes | string |
None. |
|
| Status | string |
None. |
|
| Source | string |
None. |
|
| ReserveRequestFlag | boolean |
None. |
|
| ipAddress | string |
None. |
|
| securetyUserId | globally unique identifier |
None. |
|
| InvoiceIds | Collection of globally unique identifier |
None. |
|
| ReserveRequestAmount | decimal number |
None. |
|
| DispatcherUsedFlag | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"InvoiceBatchId": "1ec91152-84e6-4625-a08b-0877f846be99",
"SFId": "sample string 2",
"AccountIdOwner": "sample string 3",
"DatetimePosted": "2026-03-21T16:29:55.1274127-05:00",
"FundingTypeId": "6123f623-29a3-44de-9093-e3c8762ba11b",
"BatchNumber": "sample string 5",
"Amount": 1.0,
"Notes": "sample string 6",
"Status": "sample string 7",
"Source": "sample string 8",
"ReserveRequestFlag": true,
"ipAddress": "sample string 9",
"securetyUserId": "e5b98eb0-4e90-45ef-a771-f79d865d660b",
"InvoiceIds": [
"714380ef-6f2f-44b4-ac04-745e951d55d2",
"04f62147-0830-4c9b-8dbe-583267320cc8"
],
"ReserveRequestAmount": 1.0,
"DispatcherUsedFlag": true
}
application/xml, text/xml
Sample:
<InvoiceBatchDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.DTO.Net">
<AccountIdOwner>sample string 3</AccountIdOwner>
<Amount>1</Amount>
<BatchNumber>sample string 5</BatchNumber>
<DatetimePosted>2026-03-21T16:29:55.1274127-05:00</DatetimePosted>
<DispatcherUsedFlag>true</DispatcherUsedFlag>
<FundingTypeId>6123f623-29a3-44de-9093-e3c8762ba11b</FundingTypeId>
<InvoiceBatchId>1ec91152-84e6-4625-a08b-0877f846be99</InvoiceBatchId>
<InvoiceIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>714380ef-6f2f-44b4-ac04-745e951d55d2</d2p1:guid>
<d2p1:guid>04f62147-0830-4c9b-8dbe-583267320cc8</d2p1:guid>
</InvoiceIds>
<Notes>sample string 6</Notes>
<ReserveRequestAmount>1</ReserveRequestAmount>
<ReserveRequestFlag>true</ReserveRequestFlag>
<SFId>sample string 2</SFId>
<Source>sample string 8</Source>
<Status>sample string 7</Status>
<ipAddress>sample string 9</ipAddress>
<securetyUserId>e5b98eb0-4e90-45ef-a771-f79d865d660b</securetyUserId>
</InvoiceBatchDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultOfAPIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | APIResponse |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.