GET api/GetProjectRuntimeAssetList?clientID={clientID}&projectID={projectID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
clientID | globally unique identifier |
Required |
|
projectID | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
CustomRuntimeAssetName | Description | Type | Additional information |
---|---|---|---|
AssetID | globally unique identifier |
None. |
|
AssetName | string |
None. |
|
ProjectRuntimeID | globally unique identifier |
None. |
|
ProjectRuntimeName | string |
None. |
|
ProjectID | globally unique identifier |
None. |
|
ProjectName | string |
None. |
|
ExecutionID | integer |
None. |
|
StartDate | date |
None. |
|
EndDate | date |
None. |
|
Status | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "AssetID": "c2f1354c-1fff-4b5a-a90f-a7f752f7cdfe", "AssetName": "sample string 2", "ProjectRuntimeID": "18f49fe4-8834-45b6-92c9-6f7c3881032e", "ProjectRuntimeName": "sample string 4", "ProjectID": "bda6552b-435b-4237-94ec-ba70c54a177e", "ProjectName": "sample string 6", "ExecutionID": 7, "StartDate": "2025-03-23T12:22:27.7541042+00:00", "EndDate": "2025-03-23T12:22:27.7541042+00:00", "Status": "sample string 9" }
application/xml, text/xml
Sample:
<CustomRuntimeAsset xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRAApi.CustomModel"> <AssetID>c2f1354c-1fff-4b5a-a90f-a7f752f7cdfe</AssetID> <AssetName>sample string 2</AssetName> <EndDate>2025-03-23T12:22:27.7541042+00:00</EndDate> <ExecutionID>7</ExecutionID> <ProjectID>bda6552b-435b-4237-94ec-ba70c54a177e</ProjectID> <ProjectName>sample string 6</ProjectName> <ProjectRuntimeID>18f49fe4-8834-45b6-92c9-6f7c3881032e</ProjectRuntimeID> <ProjectRuntimeName>sample string 4</ProjectRuntimeName> <StartDate>2025-03-23T12:22:27.7541042+00:00</StartDate> <Status>sample string 9</Status> </CustomRuntimeAsset>