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": "71abac14-6af3-4066-85f0-582ef23700fc",
"ResourceId": "95b63602-6677-4171-8248-b581def2ce8c",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2025-11-08T13:24:45.5825382+00:00",
"DateBetweenEnd": "2025-11-08T13:24:45.5825382+00:00",
"HourOffset": 2,
"PlanId": "bd600fc4-425f-4b79-82d1-b208dace802e"
}
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": "2cdcf769-9c3f-4a65-a566-9e037ced36a8",
"CostTypeId": "338c8fb2-5be4-4460-ae09-cdfd7a0af122",
"ResourceId": "d6a45789-2da3-4a69-9627-9e962a1d5a22",
"RowId": "09500ad9-b224-447d-bb9e-b8cae505ad94",
"UserId": "5f99e7c6-dbe6-459b-82a2-c3aabbfccb72",
"AuthKey": "sample string 6",
"Timestamp": "2025-11-08T13:24:45.5981627+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2025-11-08T13:24:45.5981627+00:00": 2.0
},
"MonthRange_Start": "2025-11-08T13:24:45.5981627+00:00",
"MonthRange_End": "2025-11-08T13:24:45.5981627+00:00",
"id": "ece66bbb-790a-4ee6-b8b7-2702088823ae",
"ConfigId": "cd4713bf-51ad-4ed7-aac6-3217b7322522"
},
{
"PlanId": "2cdcf769-9c3f-4a65-a566-9e037ced36a8",
"CostTypeId": "338c8fb2-5be4-4460-ae09-cdfd7a0af122",
"ResourceId": "d6a45789-2da3-4a69-9627-9e962a1d5a22",
"RowId": "09500ad9-b224-447d-bb9e-b8cae505ad94",
"UserId": "5f99e7c6-dbe6-459b-82a2-c3aabbfccb72",
"AuthKey": "sample string 6",
"Timestamp": "2025-11-08T13:24:45.5981627+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2025-11-08T13:24:45.5981627+00:00": 2.0
},
"MonthRange_Start": "2025-11-08T13:24:45.5981627+00:00",
"MonthRange_End": "2025-11-08T13:24:45.5981627+00:00",
"id": "ece66bbb-790a-4ee6-b8b7-2702088823ae",
"ConfigId": "cd4713bf-51ad-4ed7-aac6-3217b7322522"
}
]