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": "c35e235a-aa3c-4dba-ad0b-ce15fc99aec3", "AssetName": "sample string 2", "ProjectRuntimeID": "11a88752-147d-492d-89bc-6efecfe23733", "ProjectRuntimeName": "sample string 4", "ProjectID": "2b00b039-0ad3-4e47-831b-2fde90d67047", "ProjectName": "sample string 6", "ExecutionID": 7, "StartDate": "2025-03-26T08:47:27.1699415+00:00", "EndDate": "2025-03-26T08:47:27.1699415+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>c35e235a-aa3c-4dba-ad0b-ce15fc99aec3</AssetID> <AssetName>sample string 2</AssetName> <EndDate>2025-03-26T08:47:27.1699415+00:00</EndDate> <ExecutionID>7</ExecutionID> <ProjectID>2b00b039-0ad3-4e47-831b-2fde90d67047</ProjectID> <ProjectName>sample string 6</ProjectName> <ProjectRuntimeID>11a88752-147d-492d-89bc-6efecfe23733</ProjectRuntimeID> <ProjectRuntimeName>sample string 4</ProjectRuntimeName> <StartDate>2025-03-26T08:47:27.1699415+00:00</StartDate> <Status>sample string 9</Status> </CustomRuntimeAsset>