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": "a6244dfd-206d-45fa-a82d-6d3daef79bb8",
"ResourceId": "ef44d2f6-9a88-4161-9017-7efca1b8cf55",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-07-25T11:06:54.6547806+00:00",
"DateBetweenEnd": "2026-07-25T11:06:54.6547806+00:00",
"HourOffset": 2,
"PlanId": "946970e8-26a2-4277-abe1-fc1fb9ca1863"
}
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": "2f599187-ce9d-4a9c-ae48-22bf5750087c",
"CostTypeId": "c0bbd61e-908d-46d8-a899-00df6ce1d509",
"ResourceId": "1f15d4d4-8ee6-4dc6-a40e-a0d862e58e44",
"RowId": "6ba8cb85-efda-4b43-8049-d8d36230f47f",
"UserId": "13c18d2e-22b7-45fc-ab85-2168fef81506",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-25T11:06:54.6704108+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-25T11:06:54.6704108+00:00": 2.0
},
"MonthRange_Start": "2026-07-25T11:06:54.6704108+00:00",
"MonthRange_End": "2026-07-25T11:06:54.6704108+00:00",
"id": "c17d93ba-079a-4cbd-8867-8b35e9a1dadf",
"ConfigId": "f90d464e-659e-44ee-a56a-17666445102b"
},
{
"PlanId": "2f599187-ce9d-4a9c-ae48-22bf5750087c",
"CostTypeId": "c0bbd61e-908d-46d8-a899-00df6ce1d509",
"ResourceId": "1f15d4d4-8ee6-4dc6-a40e-a0d862e58e44",
"RowId": "6ba8cb85-efda-4b43-8049-d8d36230f47f",
"UserId": "13c18d2e-22b7-45fc-ab85-2168fef81506",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-25T11:06:54.6704108+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-25T11:06:54.6704108+00:00": 2.0
},
"MonthRange_Start": "2026-07-25T11:06:54.6704108+00:00",
"MonthRange_End": "2026-07-25T11:06:54.6704108+00:00",
"id": "c17d93ba-079a-4cbd-8867-8b35e9a1dadf",
"ConfigId": "f90d464e-659e-44ee-a56a-17666445102b"
}
]