POST api/ClientProjectTrigger?projectID={projectID}&clientID={clientID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
projectID | globally unique identifier |
Required |
|
clientID | globally unique identifier |
Required |
Body Parameters
CustomProjectTriggerName | Description | Type | Additional information |
---|---|---|---|
ProjectRuntimeName | string |
None. |
|
ProjectRuntimeDescription | string |
None. |
|
endDate | date |
None. |
|
assets | Collection of CustomAssetSummary |
None. |
|
ProjectState | string |
None. |
|
ProjectRunTimeId | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ProjectRuntimeName": "sample string 1", "ProjectRuntimeDescription": "sample string 2", "endDate": "2024-12-29T09:46:36.948835+00:00", "assets": [ { "AssetID": "1f872fa8-2aa4-48d4-9d0a-dfca4765cf3a", "AssetName": "sample string 2" }, { "AssetID": "1f872fa8-2aa4-48d4-9d0a-dfca4765cf3a", "AssetName": "sample string 2" } ], "ProjectState": "sample string 4", "ProjectRunTimeId": "sample string 5" }
application/xml, text/xml
Sample:
<CustomProjectTrigger xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRAApi.CustomModel"> <ProjectRunTimeId>sample string 5</ProjectRunTimeId> <ProjectRuntimeDescription>sample string 2</ProjectRuntimeDescription> <ProjectRuntimeName>sample string 1</ProjectRuntimeName> <ProjectState>sample string 4</ProjectState> <assets> <CustomAssetSummary> <AssetID>1f872fa8-2aa4-48d4-9d0a-dfca4765cf3a</AssetID> <AssetName>sample string 2</AssetName> </CustomAssetSummary> <CustomAssetSummary> <AssetID>1f872fa8-2aa4-48d4-9d0a-dfca4765cf3a</AssetID> <AssetName>sample string 2</AssetName> </CustomAssetSummary> </assets> <endDate>2024-12-29T09:46:36.948835+00:00</endDate> </CustomProjectTrigger>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.