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": "419db55a-dd25-40fc-ac2e-b76155cf2e99",
"SFId": "sample string 2",
"AccountIdOwner": "sample string 3",
"DatetimePosted": "2026-05-07T06:15:33.6638315-05:00",
"FundingTypeId": "03dfe8f2-0c42-4035-9dd0-73ff63606ea1",
"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": "31c4b2f1-2921-4e55-bb69-1e768cf27b8d",
"InvoiceIds": [
"588dab41-8495-43e1-a9d3-99616e924a14",
"a4770dd6-df0d-48f3-8ef5-8ec33b851e64"
],
"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-05-07T06:15:33.6638315-05:00</DatetimePosted>
<DispatcherUsedFlag>true</DispatcherUsedFlag>
<FundingTypeId>03dfe8f2-0c42-4035-9dd0-73ff63606ea1</FundingTypeId>
<InvoiceBatchId>419db55a-dd25-40fc-ac2e-b76155cf2e99</InvoiceBatchId>
<InvoiceIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>588dab41-8495-43e1-a9d3-99616e924a14</d2p1:guid>
<d2p1:guid>a4770dd6-df0d-48f3-8ef5-8ec33b851e64</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>31c4b2f1-2921-4e55-bb69-1e768cf27b8d</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.