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": "3c342de5-f1c9-48fd-a859-8d3a04a387dc",
"ResourceId": "45aeae0c-3c39-4f51-a163-b440c8ba9fb5",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-09-21T00:56:11.3564141+00:00",
"DateBetweenEnd": "2026-09-21T00:56:11.3564141+00:00",
"HourOffset": 2,
"PlanId": "6889a10b-cd84-466e-9db3-cfca9eb04b1e"
}
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": "47f95fd7-0f28-47d0-9e0c-4ceeb7111d9f",
"CostTypeId": "853d0840-6e2c-4424-8a89-cd3b6ab4d3be",
"ResourceId": "cc742877-a706-4e1c-a944-f17f00a8066c",
"RowId": "015073b4-e2e7-4535-b806-e2daa372a69b",
"UserId": "09919a28-0dc7-41bc-86dd-df9a67ac7ec7",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-21T00:56:11.3564141+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-21T00:56:11.3564141+00:00": 2.0
},
"MonthRange_Start": "2026-09-21T00:56:11.3564141+00:00",
"MonthRange_End": "2026-09-21T00:56:11.3564141+00:00",
"id": "70b8048a-5d1f-4c32-b690-39ae2b4afb4b",
"ConfigId": "0680be0b-d66a-4171-8a8a-de92ac50086d"
},
{
"PlanId": "47f95fd7-0f28-47d0-9e0c-4ceeb7111d9f",
"CostTypeId": "853d0840-6e2c-4424-8a89-cd3b6ab4d3be",
"ResourceId": "cc742877-a706-4e1c-a944-f17f00a8066c",
"RowId": "015073b4-e2e7-4535-b806-e2daa372a69b",
"UserId": "09919a28-0dc7-41bc-86dd-df9a67ac7ec7",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-21T00:56:11.3564141+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-21T00:56:11.3564141+00:00": 2.0
},
"MonthRange_Start": "2026-09-21T00:56:11.3564141+00:00",
"MonthRange_End": "2026-09-21T00:56:11.3564141+00:00",
"id": "70b8048a-5d1f-4c32-b690-39ae2b4afb4b",
"ConfigId": "0680be0b-d66a-4171-8a8a-de92ac50086d"
}
]