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": "fc81ba87-1b3c-45e8-9074-86ca2b9bbcb6",
"ResourceId": "7f42e7d2-1b8b-42cb-ac67-e29af395d35c",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-03-13T22:41:24.8853615+00:00",
"DateBetweenEnd": "2026-03-13T22:41:24.8853615+00:00",
"HourOffset": 2,
"PlanId": "24ddc9c1-21eb-41ee-9119-c0d13f34e971"
}
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": "bbb2d1ac-13f2-46e9-844b-2990f5fa99c7",
"CostTypeId": "26f5319d-d631-47bc-8dae-c3b245e65566",
"ResourceId": "41a531f4-e7a2-4ade-8f91-424aa7da5ca3",
"RowId": "787b6704-ca2b-4872-a438-5950b7b0e1a4",
"UserId": "40e45cbc-b246-42e5-b84f-e129db2b36de",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-13T22:41:24.9009862+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-13T22:41:24.9009862+00:00": 2.0
},
"MonthRange_Start": "2026-03-13T22:41:24.9009862+00:00",
"MonthRange_End": "2026-03-13T22:41:24.9009862+00:00",
"id": "1957a53a-03b6-416e-8b49-3ccaa0301499",
"ConfigId": "988fe154-c3d8-4b46-95bf-0e2602ac4076"
},
{
"PlanId": "bbb2d1ac-13f2-46e9-844b-2990f5fa99c7",
"CostTypeId": "26f5319d-d631-47bc-8dae-c3b245e65566",
"ResourceId": "41a531f4-e7a2-4ade-8f91-424aa7da5ca3",
"RowId": "787b6704-ca2b-4872-a438-5950b7b0e1a4",
"UserId": "40e45cbc-b246-42e5-b84f-e129db2b36de",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-13T22:41:24.9009862+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-13T22:41:24.9009862+00:00": 2.0
},
"MonthRange_Start": "2026-03-13T22:41:24.9009862+00:00",
"MonthRange_End": "2026-03-13T22:41:24.9009862+00:00",
"id": "1957a53a-03b6-416e-8b49-3ccaa0301499",
"ConfigId": "988fe154-c3d8-4b46-95bf-0e2602ac4076"
}
]