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": "e2f629a1-d225-4070-b6d7-14133b5ea130",
"ResourceId": "fa5805b4-9b3a-4648-9213-1f14e61d446b",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-09-14T23:54:59.3782032+00:00",
"DateBetweenEnd": "2026-09-14T23:54:59.3782032+00:00",
"HourOffset": 2,
"PlanId": "449dce76-61ee-42f5-9b50-cba123b65a5c"
}
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": "86f8855d-cde5-4364-b3ce-577e84644447",
"CostTypeId": "d9d5a4b6-abfb-47ce-9599-efa8623ab8a5",
"ResourceId": "5586da95-6e36-46f4-9d34-8003ff1b2a01",
"RowId": "f66f23b6-3f46-4b92-aa28-f74dc1f2dc81",
"UserId": "8e378205-aada-48f6-8949-0cabece6acdc",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-14T23:54:59.3782032+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-14T23:54:59.3782032+00:00": 2.0
},
"MonthRange_Start": "2026-09-14T23:54:59.3782032+00:00",
"MonthRange_End": "2026-09-14T23:54:59.3782032+00:00",
"id": "f93c51b3-8958-43f1-97ee-f435e907ee0f",
"ConfigId": "1651654e-9b08-421e-b064-89ffb1d3152b"
},
{
"PlanId": "86f8855d-cde5-4364-b3ce-577e84644447",
"CostTypeId": "d9d5a4b6-abfb-47ce-9599-efa8623ab8a5",
"ResourceId": "5586da95-6e36-46f4-9d34-8003ff1b2a01",
"RowId": "f66f23b6-3f46-4b92-aa28-f74dc1f2dc81",
"UserId": "8e378205-aada-48f6-8949-0cabece6acdc",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-14T23:54:59.3782032+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-14T23:54:59.3782032+00:00": 2.0
},
"MonthRange_Start": "2026-09-14T23:54:59.3782032+00:00",
"MonthRange_End": "2026-09-14T23:54:59.3782032+00:00",
"id": "f93c51b3-8958-43f1-97ee-f435e907ee0f",
"ConfigId": "1651654e-9b08-421e-b064-89ffb1d3152b"
}
]