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": "88aee8c5-1b0e-47c4-b447-fceb3eca599c",
"SFId": "sample string 2",
"AccountIdOwner": "sample string 3",
"DatetimePosted": "2026-09-19T11:31:19.1212802-05:00",
"FundingTypeId": "75a16172-4aa1-4099-b71e-4a403ecd909a",
"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": "f7f86286-7bed-40aa-89e5-1ab862ac139a",
"InvoiceIds": [
"1f134f6d-6fe6-4196-8d9c-7228653d0acd",
"73feaf83-0925-4f7e-9efa-5e9197e2b8b0"
],
"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-09-19T11:31:19.1212802-05:00</DatetimePosted>
<DispatcherUsedFlag>true</DispatcherUsedFlag>
<FundingTypeId>75a16172-4aa1-4099-b71e-4a403ecd909a</FundingTypeId>
<InvoiceBatchId>88aee8c5-1b0e-47c4-b447-fceb3eca599c</InvoiceBatchId>
<InvoiceIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>1f134f6d-6fe6-4196-8d9c-7228653d0acd</d2p1:guid>
<d2p1:guid>73feaf83-0925-4f7e-9efa-5e9197e2b8b0</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>f7f86286-7bed-40aa-89e5-1ab862ac139a</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.