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": "e2288e62-5c25-4c49-9ece-7209b151f204",
"ResourceId": "f2d5803f-e06a-4212-a3bb-726ad8e204e4",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-07-30T21:20:37.7504577+00:00",
"DateBetweenEnd": "2026-07-30T21:20:37.7504577+00:00",
"HourOffset": 2,
"PlanId": "55b455dc-6bef-41f1-91c7-87516c8072a0"
}
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": "4b3d4967-dcd5-4531-b3e0-4eebc8c5c2b7",
"CostTypeId": "6194e09e-2681-409c-90d5-edafa87a1b52",
"ResourceId": "e7836d77-3378-4b40-ad42-60d4cb540040",
"RowId": "01197205-d0ce-4a1f-aefd-f42086716ef4",
"UserId": "d0eea19b-0bb7-429f-a8b1-cfaa17418ee4",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-30T21:20:37.7504577+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-30T21:20:37.7504577+00:00": 2.0
},
"MonthRange_Start": "2026-07-30T21:20:37.7504577+00:00",
"MonthRange_End": "2026-07-30T21:20:37.7504577+00:00",
"id": "73d12e09-bacf-408f-8413-8b72a322c29c",
"ConfigId": "46f3f78a-6a00-4251-8f64-763fe605f146"
},
{
"PlanId": "4b3d4967-dcd5-4531-b3e0-4eebc8c5c2b7",
"CostTypeId": "6194e09e-2681-409c-90d5-edafa87a1b52",
"ResourceId": "e7836d77-3378-4b40-ad42-60d4cb540040",
"RowId": "01197205-d0ce-4a1f-aefd-f42086716ef4",
"UserId": "d0eea19b-0bb7-429f-a8b1-cfaa17418ee4",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-30T21:20:37.7504577+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-30T21:20:37.7504577+00:00": 2.0
},
"MonthRange_Start": "2026-07-30T21:20:37.7504577+00:00",
"MonthRange_End": "2026-07-30T21:20:37.7504577+00:00",
"id": "73d12e09-bacf-408f-8413-8b72a322c29c",
"ConfigId": "46f3f78a-6a00-4251-8f64-763fe605f146"
}
]