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. |
|
| securetyUserId | globally unique identifier |
None. |
|
| InvoiceIds | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"InvoiceBatchId": "cbf24ba8-6a56-4aaf-9649-2cfbacfbde5d",
"SFId": "sample string 2",
"AccountIdOwner": "sample string 3",
"DatetimePosted": "2026-03-03T02:18:59.3345784-06:00",
"FundingTypeId": "0a94f3ab-6994-49d3-8f37-ad3bc971eea3",
"BatchNumber": "sample string 5",
"Amount": 1.0,
"Notes": "sample string 6",
"Status": "sample string 7",
"Source": "sample string 8",
"ReserveRequestFlag": true,
"securetyUserId": "00110f93-6bde-4994-a299-49040da3a726",
"InvoiceIds": [
"31e37f15-b201-47e9-acbb-a03ca126d6e1",
"89a06d39-63b8-4f17-9b0e-19fafbabddb8"
]
}
application/xml, text/xml
Sample:
<InvoiceBatchDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.DTO">
<AccountIdOwner>sample string 3</AccountIdOwner>
<Amount>1</Amount>
<BatchNumber>sample string 5</BatchNumber>
<DatetimePosted>2026-03-03T02:18:59.3345784-06:00</DatetimePosted>
<FundingTypeId>0a94f3ab-6994-49d3-8f37-ad3bc971eea3</FundingTypeId>
<InvoiceBatchId>cbf24ba8-6a56-4aaf-9649-2cfbacfbde5d</InvoiceBatchId>
<InvoiceIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>31e37f15-b201-47e9-acbb-a03ca126d6e1</d2p1:guid>
<d2p1:guid>89a06d39-63b8-4f17-9b0e-19fafbabddb8</d2p1:guid>
</InvoiceIds>
<Notes>sample string 6</Notes>
<ReserveRequestFlag>true</ReserveRequestFlag>
<SFId>sample string 2</SFId>
<Source>sample string 8</Source>
<Status>sample string 7</Status>
<securetyUserId>00110f93-6bde-4994-a299-49040da3a726</securetyUserId>
</InvoiceBatchDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
JsonResultOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | boolean |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.