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": "6810d4c8-02f8-487c-8f08-57fa773270a9",
"ResourceId": "6c44763a-cb51-4995-9f41-847d907ea9aa",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-02-01T03:33:24.8299514+00:00",
"DateBetweenEnd": "2026-02-01T03:33:24.8299514+00:00",
"HourOffset": 2,
"PlanId": "dfa0a2a2-0f71-42cd-83b2-87973188a223"
}
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": "6f4443fa-7a2e-4a60-bf44-a6c28823d688",
"CostTypeId": "3e77b7a7-957c-4642-97da-0588e976684a",
"ResourceId": "65fa4754-ba8a-4648-9d21-89741d34fd2f",
"RowId": "36da0ec9-62a0-424c-ba1d-3e3076fb303a",
"UserId": "312095aa-3f1c-488e-9b9f-49b1a1dcbb84",
"AuthKey": "sample string 6",
"Timestamp": "2026-02-01T03:33:24.8299514+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-02-01T03:33:24.8299514+00:00": 2.0
},
"MonthRange_Start": "2026-02-01T03:33:24.8299514+00:00",
"MonthRange_End": "2026-02-01T03:33:24.8299514+00:00",
"id": "19851ef9-34be-489b-a1f9-ab72059295b3",
"ConfigId": "f74cd221-5c60-438c-8a1d-31122ccf3a0b"
},
{
"PlanId": "6f4443fa-7a2e-4a60-bf44-a6c28823d688",
"CostTypeId": "3e77b7a7-957c-4642-97da-0588e976684a",
"ResourceId": "65fa4754-ba8a-4648-9d21-89741d34fd2f",
"RowId": "36da0ec9-62a0-424c-ba1d-3e3076fb303a",
"UserId": "312095aa-3f1c-488e-9b9f-49b1a1dcbb84",
"AuthKey": "sample string 6",
"Timestamp": "2026-02-01T03:33:24.8299514+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-02-01T03:33:24.8299514+00:00": 2.0
},
"MonthRange_Start": "2026-02-01T03:33:24.8299514+00:00",
"MonthRange_End": "2026-02-01T03:33:24.8299514+00:00",
"id": "19851ef9-34be-489b-a1f9-ab72059295b3",
"ConfigId": "f74cd221-5c60-438c-8a1d-31122ccf3a0b"
}
]