POST https://api.d-tools.com/SI/Publish/Projects/NewChangeOrder
Publish new change order to existing SI project.
Request Information
URI Parameters
None.
Body Parameters
NewChangeOrderInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectId |
ProjectId for project (must be a Guid). (Required) |
string |
None. |
| IntegrationChangeOrderId |
Id for the change order sent by integration (Required) |
string |
None. |
| Name |
Name of the change order (Required) |
string |
None. |
| TypeId |
TypeId: 1 = Internal, 2 = External |
byte |
None. |
| Notes |
Change Order Notes |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProjectId": "sample string 1",
"IntegrationChangeOrderId": "sample string 2",
"Name": "sample string 3",
"TypeId": 64,
"Notes": "sample string 5"
}
application/xml, text/xml
Sample:
<NewChangeOrderInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTools.SICloudAPI.DataObjects"> <IntegrationChangeOrderId>sample string 2</IntegrationChangeOrderId> <Name>sample string 3</Name> <Notes>sample string 5</Notes> <ProjectId>sample string 1</ProjectId> <TypeId>64</TypeId> </NewChangeOrderInfo>
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": "dc5a6299-881f-4c0b-b0da-7f09b63e3bdc",
"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>dc5a6299-881f-4c0b-b0da-7f09b63e3bdc</MessageId> </PublishResponse>