POST api/projectbatch/DeliverProjectBatch
Request Information
URI Parameters
None.
Body Parameters
ProjectBatchStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerCode | string |
Required String length: inclusive between 0 and 3 |
|
| ProjectCode | string |
Required String length: inclusive between 0 and 5 |
|
| BatchNo | string |
Required String length: inclusive between 0 and 4 |
|
| DeliveredDate | date |
Required |
|
| DeliveredCount | integer |
Required |
|
| UserID | string |
Required String length: inclusive between 0 and 50 |
Request Formats
application/json, text/json
Sample:
{
"CustomerCode": "sample string 1",
"ProjectCode": "sample string 2",
"BatchNo": "sample string 3",
"DeliveredDate": "2025-12-06T09:52:27.1074543+05:30",
"DeliveredCount": 5,
"UserID": "sample string 6"
}
application/xml, text/xml
Sample:
<ProjectBatchStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GOPWebAPI.Models"> <BatchNo>sample string 3</BatchNo> <CustomerCode>sample string 1</CustomerCode> <DeliveredCount>5</DeliveredCount> <DeliveredDate>2025-12-06T09:52:27.1074543+05:30</DeliveredDate> <ProjectCode>sample string 2</ProjectCode> <UserID>sample string 6</UserID> </ProjectBatchStatus>
multipart/form-data
Sample:
<ProjectBatchStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GOPWebAPI.Models"><BatchNo>sample string 3</BatchNo><CustomerCode>sample string 1</CustomerCode><DeliveredCount>5</DeliveredCount><DeliveredDate>2025-12-06T09:52:27.1074543+05:30</DeliveredDate><ProjectCode>sample string 2</ProjectCode><UserID>sample string 6</UserID></ProjectBatchStatus>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |