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": "ce4133a3-a014-43b0-9dc1-b15d5d13e8ee",
"ResourceId": "196780f4-f0ab-44fa-ad94-88327711ecae",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-08-27T19:33:31.3323644+00:00",
"DateBetweenEnd": "2026-08-27T19:33:31.3323644+00:00",
"HourOffset": 2,
"PlanId": "94f51e33-b08e-484b-bc1d-f0f773e085dd"
}
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": "a3768218-271f-4bda-ae4a-88b0949d1b11",
"CostTypeId": "88c54660-b296-436c-bff2-c8d68b9a56f1",
"ResourceId": "60dcd6f7-98b7-4617-a0a4-b390773b4aed",
"RowId": "3876fed9-edcd-496b-9fee-7a442ffe6e56",
"UserId": "20d71286-975e-47d2-b311-1030409569d6",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-27T19:33:31.3323644+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-27T19:33:31.3323644+00:00": 2.0
},
"MonthRange_Start": "2026-08-27T19:33:31.3323644+00:00",
"MonthRange_End": "2026-08-27T19:33:31.3323644+00:00",
"id": "4dd0fff5-32bf-4c3c-b473-fd44cc4cadf8",
"ConfigId": "92bca6fb-9fc9-4c5d-a1d1-a1c185e7da7d"
},
{
"PlanId": "a3768218-271f-4bda-ae4a-88b0949d1b11",
"CostTypeId": "88c54660-b296-436c-bff2-c8d68b9a56f1",
"ResourceId": "60dcd6f7-98b7-4617-a0a4-b390773b4aed",
"RowId": "3876fed9-edcd-496b-9fee-7a442ffe6e56",
"UserId": "20d71286-975e-47d2-b311-1030409569d6",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-27T19:33:31.3323644+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-27T19:33:31.3323644+00:00": 2.0
},
"MonthRange_Start": "2026-08-27T19:33:31.3323644+00:00",
"MonthRange_End": "2026-08-27T19:33:31.3323644+00:00",
"id": "4dd0fff5-32bf-4c3c-b473-fd44cc4cadf8",
"ConfigId": "92bca6fb-9fc9-4c5d-a1d1-a1c185e7da7d"
}
]