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": "60d5b093-ffa5-4461-842c-b73fdc7c7e9d",
"ResourceId": "45e0f6a3-f4b4-4236-b009-2c043aa65106",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-09-27T00:09:05.9695703+00:00",
"DateBetweenEnd": "2026-09-27T00:09:05.9695703+00:00",
"HourOffset": 2,
"PlanId": "77ed150b-8a95-47dd-bf20-0b83015904e4"
}
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": "2d1817a3-44d5-466c-871b-8f1553e88e9d",
"CostTypeId": "d49f0ba0-6983-451c-a324-1a3d298a1420",
"ResourceId": "559c8526-e16d-4d80-9734-0b7cff51d0ea",
"RowId": "8d53d7e8-5928-4c1f-a434-8450f8258141",
"UserId": "34a48c22-f619-4420-8d2f-e69e0ea592fe",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-27T00:09:05.9695703+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-27T00:09:05.9695703+00:00": 2.0
},
"MonthRange_Start": "2026-09-27T00:09:05.9695703+00:00",
"MonthRange_End": "2026-09-27T00:09:05.9695703+00:00",
"id": "9e849c9f-e604-4d99-a195-e1c26dcf1da4",
"ConfigId": "d60e32a2-bc8d-4a04-88d0-32ff5129875c"
},
{
"PlanId": "2d1817a3-44d5-466c-871b-8f1553e88e9d",
"CostTypeId": "d49f0ba0-6983-451c-a324-1a3d298a1420",
"ResourceId": "559c8526-e16d-4d80-9734-0b7cff51d0ea",
"RowId": "8d53d7e8-5928-4c1f-a434-8450f8258141",
"UserId": "34a48c22-f619-4420-8d2f-e69e0ea592fe",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-27T00:09:05.9695703+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-27T00:09:05.9695703+00:00": 2.0
},
"MonthRange_Start": "2026-09-27T00:09:05.9695703+00:00",
"MonthRange_End": "2026-09-27T00:09:05.9695703+00:00",
"id": "9e849c9f-e604-4d99-a195-e1c26dcf1da4",
"ConfigId": "d60e32a2-bc8d-4a04-88d0-32ff5129875c"
}
]