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": "2025-03-26T10:33:21.3147504+00:00", "assets": [ { "AssetID": "d51971b0-6b6b-4415-bb45-779559c3c3a3", "AssetName": "sample string 2" }, { "AssetID": "d51971b0-6b6b-4415-bb45-779559c3c3a3", "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>d51971b0-6b6b-4415-bb45-779559c3c3a3</AssetID> <AssetName>sample string 2</AssetName> </CustomAssetSummary> <CustomAssetSummary> <AssetID>d51971b0-6b6b-4415-bb45-779559c3c3a3</AssetID> <AssetName>sample string 2</AssetName> </CustomAssetSummary> </assets> <endDate>2025-03-26T10:33:21.3147504+00:00</endDate> </CustomProjectTrigger>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.