POST api/audit/resources/{planId}
Gets a list of Resource Plan Audits based on the passed filter values.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| planId | string |
None. |
Body Parameters
If PlanId is an empty Guid - will return audits based on the global resource plan.
Audit_ResourcePlansQuery| Name | Description | Type | Additional information |
|---|---|---|---|
| Action | string |
None. |
|
| UserId | globally unique identifier |
None. |
|
| ResourceId | globally unique identifier |
None. |
|
| Columns | Collection of string |
None. |
|
| DateBetweenStart | date |
None. |
|
| DateBetweenEnd | date |
None. |
|
| HourOffset | integer |
None. |
|
| PlanId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Action": "sample string 1",
"UserId": "5ff79ca3-a04c-478b-855c-dd05e6e22c8c",
"ResourceId": "21d1a3aa-d2b3-42ed-9b0e-e7cfddbc73b5",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-03-11T10:08:57.1422562+00:00",
"DateBetweenEnd": "2026-03-11T10:08:57.1422562+00:00",
"HourOffset": 2,
"PlanId": "270a26ec-d0ca-472f-9be2-817713d7706b"
}
Response Information
Resource Description
Collection of Audit_ResourcePlans| Name | Description | Type | Additional information |
|---|---|---|---|
| PlanId | globally unique identifier |
None. |
|
| CostTypeId | globally unique identifier |
None. |
|
| ResourceId | globally unique identifier |
None. |
|
| RowId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| AuthKey | string |
None. |
|
| Timestamp | date |
None. |
|
| Action | string |
None. |
|
| UpdatedColumnValues | Dictionary of date [key] and decimal number [value] |
None. |
|
| MonthRange_Start | date |
None. |
|
| MonthRange_End | date |
None. |
|
| id | globally unique identifier |
None. |
|
| ConfigId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PlanId": "01f4cb16-cdae-4a40-bc80-75fefa56c930",
"CostTypeId": "1453247e-200b-414b-b378-68e68713c11a",
"ResourceId": "4b608521-97ff-41de-8564-174757430859",
"RowId": "dcf3954d-4b6f-48d8-a710-81a668e549c4",
"UserId": "dd99237d-b3b0-49ad-a8b7-f2d6071a33a7",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-11T10:08:57.1422562+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-11T10:08:57.1422562+00:00": 2.0
},
"MonthRange_Start": "2026-03-11T10:08:57.1422562+00:00",
"MonthRange_End": "2026-03-11T10:08:57.1422562+00:00",
"id": "4c36c78b-dec5-4791-be53-d112be88fbeb",
"ConfigId": "1948d072-d8aa-4737-aabc-6f9fe3d8fa50"
},
{
"PlanId": "01f4cb16-cdae-4a40-bc80-75fefa56c930",
"CostTypeId": "1453247e-200b-414b-b378-68e68713c11a",
"ResourceId": "4b608521-97ff-41de-8564-174757430859",
"RowId": "dcf3954d-4b6f-48d8-a710-81a668e549c4",
"UserId": "dd99237d-b3b0-49ad-a8b7-f2d6071a33a7",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-11T10:08:57.1422562+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-11T10:08:57.1422562+00:00": 2.0
},
"MonthRange_Start": "2026-03-11T10:08:57.1422562+00:00",
"MonthRange_End": "2026-03-11T10:08:57.1422562+00:00",
"id": "4c36c78b-dec5-4791-be53-d112be88fbeb",
"ConfigId": "1948d072-d8aa-4737-aabc-6f9fe3d8fa50"
}
]