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": "61bf45ea-c62e-48cf-ace3-ab73ebcf89ab",
"ResourceId": "21295354-3354-4451-a4b4-cc252b18b217",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-07-10T01:45:18.0647992+00:00",
"DateBetweenEnd": "2026-07-10T01:45:18.0647992+00:00",
"HourOffset": 2,
"PlanId": "7ceaab53-2584-401c-9a21-955dafca7f9d"
}
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": "a0e67702-4bb6-4e00-9168-bee92efa1b71",
"CostTypeId": "997ccf6b-4a39-455b-acaa-2efcf042a776",
"ResourceId": "0ab544ee-4473-42b9-a83a-9d1885ea3f53",
"RowId": "00227538-6586-4d92-8f39-69c250a66e24",
"UserId": "7eeda7b7-f681-4b91-bdaa-d59c0f088400",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-10T01:45:18.0647992+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-10T01:45:18.0647992+00:00": 2.0
},
"MonthRange_Start": "2026-07-10T01:45:18.0647992+00:00",
"MonthRange_End": "2026-07-10T01:45:18.0647992+00:00",
"id": "f99b0218-f8d2-45c5-93a9-39e493159409",
"ConfigId": "07a2517e-487c-41ee-b265-55b28034fb86"
},
{
"PlanId": "a0e67702-4bb6-4e00-9168-bee92efa1b71",
"CostTypeId": "997ccf6b-4a39-455b-acaa-2efcf042a776",
"ResourceId": "0ab544ee-4473-42b9-a83a-9d1885ea3f53",
"RowId": "00227538-6586-4d92-8f39-69c250a66e24",
"UserId": "7eeda7b7-f681-4b91-bdaa-d59c0f088400",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-10T01:45:18.0647992+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-10T01:45:18.0647992+00:00": 2.0
},
"MonthRange_Start": "2026-07-10T01:45:18.0647992+00:00",
"MonthRange_End": "2026-07-10T01:45:18.0647992+00:00",
"id": "f99b0218-f8d2-45c5-93a9-39e493159409",
"ConfigId": "07a2517e-487c-41ee-b265-55b28034fb86"
}
]