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": "539b8374-1302-440a-b3da-0a81e7c5de0c",
"ResourceId": "41acfeb1-a360-43af-b9d3-177a55c5d275",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-02-26T05:58:12.1836261+00:00",
"DateBetweenEnd": "2026-02-26T05:58:12.1836261+00:00",
"HourOffset": 2,
"PlanId": "3a28ee3b-422d-4a96-bf35-994817a7bfd5"
}
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": "610c4c56-2df3-40e6-9c28-2df3dd9fbe41",
"CostTypeId": "ab7bc0ae-6956-49b0-a875-a65d09a621c9",
"ResourceId": "fbc4b99c-0eed-45df-b085-4ee918360251",
"RowId": "d16b0682-12cc-4b46-a921-c5d1be83a32e",
"UserId": "cbe1930b-5177-4e89-a0d3-2e4b212f1488",
"AuthKey": "sample string 6",
"Timestamp": "2026-02-26T05:58:12.1836261+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-02-26T05:58:12.1836261+00:00": 2.0
},
"MonthRange_Start": "2026-02-26T05:58:12.1836261+00:00",
"MonthRange_End": "2026-02-26T05:58:12.1836261+00:00",
"id": "219ffd47-8ef8-428a-af87-6870764b4637",
"ConfigId": "9eaf13c9-6913-471d-913b-86865857a345"
},
{
"PlanId": "610c4c56-2df3-40e6-9c28-2df3dd9fbe41",
"CostTypeId": "ab7bc0ae-6956-49b0-a875-a65d09a621c9",
"ResourceId": "fbc4b99c-0eed-45df-b085-4ee918360251",
"RowId": "d16b0682-12cc-4b46-a921-c5d1be83a32e",
"UserId": "cbe1930b-5177-4e89-a0d3-2e4b212f1488",
"AuthKey": "sample string 6",
"Timestamp": "2026-02-26T05:58:12.1836261+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-02-26T05:58:12.1836261+00:00": 2.0
},
"MonthRange_Start": "2026-02-26T05:58:12.1836261+00:00",
"MonthRange_End": "2026-02-26T05:58:12.1836261+00:00",
"id": "219ffd47-8ef8-428a-af87-6870764b4637",
"ConfigId": "9eaf13c9-6913-471d-913b-86865857a345"
}
]