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": "24b8aeb1-b306-46c7-b7b7-469c9b67f18d",
"ResourceId": "1c6ad176-c893-40ad-961c-1dad2d4cd15f",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-08-05T22:57:56.246179+00:00",
"DateBetweenEnd": "2026-08-05T22:57:56.246179+00:00",
"HourOffset": 2,
"PlanId": "ec76c744-caf6-4d5f-8678-3784ef82d96d"
}
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": "87dc7326-f143-462a-9e7c-61c6fbdeb55f",
"CostTypeId": "86695851-9a8c-4630-9d1e-72d5704c7eae",
"ResourceId": "a7c7a532-a45b-4671-9488-e2386471ca68",
"RowId": "2a9445d9-1bd9-479d-83e3-729321f0e118",
"UserId": "6c03ee9b-cd25-441a-b0ed-2aa8e84060d0",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-05T22:57:56.2617856+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-05T22:57:56.2617856+00:00": 2.0
},
"MonthRange_Start": "2026-08-05T22:57:56.2617856+00:00",
"MonthRange_End": "2026-08-05T22:57:56.2617856+00:00",
"id": "bc4d599f-f381-4b6b-9f5c-bdca27965967",
"ConfigId": "995dd384-6a4d-49f1-90dc-7e1841ce3935"
},
{
"PlanId": "87dc7326-f143-462a-9e7c-61c6fbdeb55f",
"CostTypeId": "86695851-9a8c-4630-9d1e-72d5704c7eae",
"ResourceId": "a7c7a532-a45b-4671-9488-e2386471ca68",
"RowId": "2a9445d9-1bd9-479d-83e3-729321f0e118",
"UserId": "6c03ee9b-cd25-441a-b0ed-2aa8e84060d0",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-05T22:57:56.2617856+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-05T22:57:56.2617856+00:00": 2.0
},
"MonthRange_Start": "2026-08-05T22:57:56.2617856+00:00",
"MonthRange_End": "2026-08-05T22:57:56.2617856+00:00",
"id": "bc4d599f-f381-4b6b-9f5c-bdca27965967",
"ConfigId": "995dd384-6a4d-49f1-90dc-7e1841ce3935"
}
]