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": "c74dc1c4-7f20-42f2-8100-dc656d30aa8b",
"Date": "2025-12-09T00:05:29.4585208+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>2025-12-09T00:05:29.4585208+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>c74dc1c4-7f20-42f2-8100-dc656d30aa8b</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": "47b5ef23-88bb-4d72-85d9-ac03639f4a1c",
"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>47b5ef23-88bb-4d72-85d9-ac03639f4a1c</MessageId> </PublishResponse>