POST https://api.d-tools.com/SI/Publish/Projects/LockChangeOrderStatus
Mark existing SI project change order status as locked or unlocked.
Request Information
URI Parameters
None.
Body Parameters
LockChangeOrderStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectId |
Id of project to update (Required) |
string |
None. |
| LockChangeOrderStatusInfos |
List of Change Order to lock status or unlock status |
Collection of LockChangeOrderStatusInfo |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProjectId": "sample string 1",
"MessageId": "ae354d46-a546-472c-8510-2bb8dc6f9d52",
"Date": "2026-02-07T07:03:43.1024139+00:00",
"LockChangeOrderStatusInfos": [
{
"IntegrationChangeOrderId": "sample string 1",
"Number": "sample string 2",
"Type": "sample string 3",
"LockStatus": true
},
{
"IntegrationChangeOrderId": "sample string 1",
"Number": "sample string 2",
"Type": "sample string 3",
"LockStatus": true
}
]
}
application/xml, text/xml
Sample:
<LockChangeOrderStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTools.SICloudAPI.DataObjects">
<Date>2026-02-07T07:03:43.1024139+00:00</Date>
<LockChangeOrderStatusInfos>
<LockChangeOrderStatusInfo>
<IntegrationChangeOrderId>sample string 1</IntegrationChangeOrderId>
<LockStatus>true</LockStatus>
<Number>sample string 2</Number>
<Type>sample string 3</Type>
</LockChangeOrderStatusInfo>
<LockChangeOrderStatusInfo>
<IntegrationChangeOrderId>sample string 1</IntegrationChangeOrderId>
<LockStatus>true</LockStatus>
<Number>sample string 2</Number>
<Type>sample string 3</Type>
</LockChangeOrderStatusInfo>
</LockChangeOrderStatusInfos>
<MessageId>ae354d46-a546-472c-8510-2bb8dc6f9d52</MessageId>
<ProjectId>sample string 1</ProjectId>
</LockChangeOrderStatus>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
PublishResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| MessageId |
Check the status of the transaction using this Message Id |
globally unique identifier |
None. |
| Message |
Success Message |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"MessageId": "4d282e43-3d5d-47e1-a1ee-b9b42305fa71",
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<PublishResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTools.SICloudAPI.DataObjects"> <Message>sample string 2</Message> <MessageId>4d282e43-3d5d-47e1-a1ee-b9b42305fa71</MessageId> </PublishResponse>