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": "8d9d8da7-afe9-4f23-80b2-65dead19941a",
"ResourceId": "272a1b6b-7995-4a30-9172-78c2d85b8b6e",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-08-09T14:31:03.5145376+00:00",
"DateBetweenEnd": "2026-08-09T14:31:03.5145376+00:00",
"HourOffset": 2,
"PlanId": "079888d7-f162-4080-bedf-230f49e2232b"
}
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": "e88fc0c1-c554-4bb2-bb7a-27d5868bc90d",
"CostTypeId": "c66830a2-d6b2-435b-96b8-325b9d2fa313",
"ResourceId": "ae9d91fb-778d-4d66-b932-8b1f26cc025a",
"RowId": "3f219668-7cc2-460f-920b-2cea7aefd1c9",
"UserId": "ca23c27d-5854-4f32-8e63-973fd5a83a9d",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-09T14:31:03.5145376+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-09T14:31:03.5145376+00:00": 2.0
},
"MonthRange_Start": "2026-08-09T14:31:03.5145376+00:00",
"MonthRange_End": "2026-08-09T14:31:03.5145376+00:00",
"id": "88188579-caee-4ee2-975c-a62085f41127",
"ConfigId": "38f68603-c429-4a44-b8bf-e5f8a893ce2a"
},
{
"PlanId": "e88fc0c1-c554-4bb2-bb7a-27d5868bc90d",
"CostTypeId": "c66830a2-d6b2-435b-96b8-325b9d2fa313",
"ResourceId": "ae9d91fb-778d-4d66-b932-8b1f26cc025a",
"RowId": "3f219668-7cc2-460f-920b-2cea7aefd1c9",
"UserId": "ca23c27d-5854-4f32-8e63-973fd5a83a9d",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-09T14:31:03.5145376+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-09T14:31:03.5145376+00:00": 2.0
},
"MonthRange_Start": "2026-08-09T14:31:03.5145376+00:00",
"MonthRange_End": "2026-08-09T14:31:03.5145376+00:00",
"id": "88188579-caee-4ee2-975c-a62085f41127",
"ConfigId": "38f68603-c429-4a44-b8bf-e5f8a893ce2a"
}
]