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": "fa1f76ec-e784-4164-8e7a-7a49df94ddb5",
"ResourceId": "89130037-3f26-4656-bdd1-168049025191",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-04-26T03:45:34.5436409+00:00",
"DateBetweenEnd": "2026-04-26T03:45:34.5436409+00:00",
"HourOffset": 2,
"PlanId": "506c7caa-68c7-419c-8741-7af79c4313e1"
}
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": "216a34ef-64e1-46dc-93b0-3a41728dec17",
"CostTypeId": "a1d9dd93-20e6-45d6-9d53-c0bd036ff3b7",
"ResourceId": "b70f86fb-a032-4cbe-8817-4bdbf499993a",
"RowId": "9d711d48-30d8-40a5-8d42-67c9bfb115c1",
"UserId": "c185adc1-e94e-4a07-937b-f57ba3aded32",
"AuthKey": "sample string 6",
"Timestamp": "2026-04-26T03:45:34.5436409+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-04-26T03:45:34.5436409+00:00": 2.0
},
"MonthRange_Start": "2026-04-26T03:45:34.5436409+00:00",
"MonthRange_End": "2026-04-26T03:45:34.5436409+00:00",
"id": "d3e833a3-0c3c-4a4f-8084-852fb566d523",
"ConfigId": "7f60f4cc-5b62-4fd4-893b-ce31e35f56a8"
},
{
"PlanId": "216a34ef-64e1-46dc-93b0-3a41728dec17",
"CostTypeId": "a1d9dd93-20e6-45d6-9d53-c0bd036ff3b7",
"ResourceId": "b70f86fb-a032-4cbe-8817-4bdbf499993a",
"RowId": "9d711d48-30d8-40a5-8d42-67c9bfb115c1",
"UserId": "c185adc1-e94e-4a07-937b-f57ba3aded32",
"AuthKey": "sample string 6",
"Timestamp": "2026-04-26T03:45:34.5436409+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-04-26T03:45:34.5436409+00:00": 2.0
},
"MonthRange_Start": "2026-04-26T03:45:34.5436409+00:00",
"MonthRange_End": "2026-04-26T03:45:34.5436409+00:00",
"id": "d3e833a3-0c3c-4a4f-8084-852fb566d523",
"ConfigId": "7f60f4cc-5b62-4fd4-893b-ce31e35f56a8"
}
]