POST api/Workbooks/WorkOrder
Create a new work order from Workbooks.
Request Information
URI Parameters
None.
Body Parameters
IBMS_Cloud_API.WorkOrdersModel+WorkbooksWorkOrder| Name | Description | Type | Additional information |
|---|---|---|---|
| WOdate | date |
None. |
|
| OrderNumber | string |
None. |
|
| Description | string |
None. |
|
| QuotedPrice | decimal number |
None. |
|
| Details | string |
None. |
|
| Notes | string |
None. |
|
| ScheduledDate | date |
None. |
|
| ScheduledToDate | date |
None. |
|
| CategoryID | integer |
None. |
|
| TypeID | integer |
None. |
|
| InternalRef | string |
None. |
|
| OriginalQuoteRef | string |
None. |
|
| SiteReference | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"WOdate": "2025-11-12T03:48:56.2088893+00:00",
"OrderNumber": "sample string 2",
"Description": "sample string 3",
"QuotedPrice": 4.1,
"Details": "sample string 5",
"Notes": "sample string 6",
"ScheduledDate": "2025-11-12T03:48:56.2088893+00:00",
"ScheduledToDate": "2025-11-12T03:48:56.2088893+00:00",
"CategoryID": 9,
"TypeID": 10,
"InternalRef": "sample string 11",
"OriginalQuoteRef": "sample string 12",
"SiteReference": "sample string 13"
}
text/html
Sample:
{"WOdate":"2025-11-12T03:48:56.2088893+00:00","OrderNumber":"sample string 2","Description":"sample string 3","QuotedPrice":4.1,"Details":"sample string 5","Notes":"sample string 6","ScheduledDate":"2025-11-12T03:48:56.2088893+00:00","ScheduledToDate":"2025-11-12T03:48:56.2088893+00:00","CategoryID":9,"TypeID":10,"InternalRef":"sample string 11","OriginalQuoteRef":"sample string 12","SiteReference":"sample string 13"}
application/xml, text/xml
Sample:
<WorkOrdersModel.WorkbooksWorkOrder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IBMS_Cloud_API"> <CategoryID>9</CategoryID> <Description>sample string 3</Description> <Details>sample string 5</Details> <InternalRef>sample string 11</InternalRef> <Notes>sample string 6</Notes> <OrderNumber>sample string 2</OrderNumber> <OriginalQuoteRef>sample string 12</OriginalQuoteRef> <QuotedPrice>4.1</QuotedPrice> <ScheduledDate>2025-11-12T03:48:56.2088893+00:00</ScheduledDate> <ScheduledToDate>2025-11-12T03:48:56.2088893+00:00</ScheduledToDate> <SiteReference>sample string 13</SiteReference> <TypeID>10</TypeID> <WOdate>2025-11-12T03:48:56.2088893+00:00</WOdate> </WorkOrdersModel.WorkbooksWorkOrder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
WorkOrderOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | string |
None. |
|
| Reference | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": "sample string 1",
"Reference": "sample string 2",
"Message": "sample string 3"
}
text/html
Sample:
{"Result":"sample string 1","Reference":"sample string 2","Message":"sample string 3"}
application/xml, text/xml
Sample:
<WorkOrderOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IBMS_Cloud_API.Controllers"> <Message>sample string 3</Message> <Reference>sample string 2</Reference> <Result>sample string 1</Result> </WorkOrderOutput>