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": "f9a5669a-5621-4736-9589-4f73d1a99cfe",
"ResourceId": "aa68412d-5287-4b03-a64b-6ef391122f8e",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-06-06T11:25:16.5796935+00:00",
"DateBetweenEnd": "2026-06-06T11:25:16.5796935+00:00",
"HourOffset": 2,
"PlanId": "e0de6cc1-d5c5-4863-9a64-7a6861d4f257"
}
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": "213b201a-b2af-492a-a863-55a66e90c467",
"CostTypeId": "8ce9dfd3-af28-402a-89e9-1ab3c8658107",
"ResourceId": "833ad815-fdef-4a3a-bc5d-4389c4a8ab8a",
"RowId": "8acb4696-9d90-41fb-865b-22a96ea7d192",
"UserId": "6e86ece6-7a7c-4e2b-8d1d-3a79552a87d5",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-06T11:25:16.595319+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-06T11:25:16.595319+00:00": 2.0
},
"MonthRange_Start": "2026-06-06T11:25:16.595319+00:00",
"MonthRange_End": "2026-06-06T11:25:16.595319+00:00",
"id": "8153081a-6d4a-4007-a978-05ea00124ff1",
"ConfigId": "55bddf9a-ceb1-46fa-a8e3-850e7f04dc55"
},
{
"PlanId": "213b201a-b2af-492a-a863-55a66e90c467",
"CostTypeId": "8ce9dfd3-af28-402a-89e9-1ab3c8658107",
"ResourceId": "833ad815-fdef-4a3a-bc5d-4389c4a8ab8a",
"RowId": "8acb4696-9d90-41fb-865b-22a96ea7d192",
"UserId": "6e86ece6-7a7c-4e2b-8d1d-3a79552a87d5",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-06T11:25:16.595319+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-06T11:25:16.595319+00:00": 2.0
},
"MonthRange_Start": "2026-06-06T11:25:16.595319+00:00",
"MonthRange_End": "2026-06-06T11:25:16.595319+00:00",
"id": "8153081a-6d4a-4007-a978-05ea00124ff1",
"ConfigId": "55bddf9a-ceb1-46fa-a8e3-850e7f04dc55"
}
]