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": "720f1e80-1242-4651-ae79-657e34b67438",
"SFId": "sample string 2",
"AccountIdOwner": "sample string 3",
"DatetimePosted": "2026-02-13T07:28:04.0303791-06:00",
"FundingTypeId": "e6c118c7-f20b-401d-a085-e3e67381296f",
"BatchNumber": "sample string 5",
"Amount": 1.0,
"Notes": "sample string 6",
"Status": "sample string 7",
"Source": "sample string 8",
"ReserveRequestFlag": true,
"securetyUserId": "ad1a7807-4618-4665-8bf8-b576c73997ee",
"InvoiceIds": [
"fb8dcbc2-cfbf-46ee-b65e-c1f38db88ca3",
"d9cee9d7-db82-4d71-aa2c-42575be0374f"
]
}
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-02-13T07:28:04.0303791-06:00</DatetimePosted>
<FundingTypeId>e6c118c7-f20b-401d-a085-e3e67381296f</FundingTypeId>
<InvoiceBatchId>720f1e80-1242-4651-ae79-657e34b67438</InvoiceBatchId>
<InvoiceIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>fb8dcbc2-cfbf-46ee-b65e-c1f38db88ca3</d2p1:guid>
<d2p1:guid>d9cee9d7-db82-4d71-aa2c-42575be0374f</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>ad1a7807-4618-4665-8bf8-b576c73997ee</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.