POST api/batch/create

Request Information

URI Parameters

None.

Body Parameters

ClientBatch
NameDescriptionTypeAdditional information
ID

integer

None.

ClientCode

integer

None.

BatchID

integer

None.

BatchDescription

string

None.

StartDate

date

None.

EndDate

date

None.

IsBatchOpen

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "ClientCode": 2,
  "BatchID": 3,
  "BatchDescription": "sample string 4",
  "StartDate": "2026-08-16T09:17:24.9745271+00:00",
  "EndDate": "2026-08-16T09:17:24.9745271+00:00",
  "IsBatchOpen": 7
}

application/xml, text/xml

Sample:
<ClientBatch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VerifyAPI.Models">
  <BatchDescription>sample string 4</BatchDescription>
  <BatchID>3</BatchID>
  <ClientCode>2</ClientCode>
  <EndDate>2026-08-16T09:17:24.9745271+00:00</EndDate>
  <ID>1</ID>
  <IsBatchOpen>7</IsBatchOpen>
  <StartDate>2026-08-16T09:17:24.9745271+00:00</StartDate>
</ClientBatch>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.