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
NewChangeOrderInfoName | 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
PublishResponseName | 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": "74f59a79-7d27-4a1e-b916-88b5e8a1d566", "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>74f59a79-7d27-4a1e-b916-88b5e8a1d566</MessageId> </PublishResponse>