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": "4bf6da4b-a171-4799-b49b-4cfe2cb54e96",
"ResourceId": "0624189b-8da2-4744-8080-35303db0b1c1",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-01-07T20:26:39.0756835+00:00",
"DateBetweenEnd": "2026-01-07T20:26:39.0756835+00:00",
"HourOffset": 2,
"PlanId": "f7129b92-fcdc-4d7d-9255-d4349e3571a1"
}
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": "513dc4bf-074f-4ebc-b707-98cae37eba33",
"CostTypeId": "2a599e8f-3d96-4e57-b05d-57c1d0629442",
"ResourceId": "ede1116a-402b-42c4-abc5-fc261af2cb42",
"RowId": "4545a1c4-8971-479f-a094-a6ec9e8e9d0f",
"UserId": "b87b015c-b09b-4a38-8e84-d1140c0ebef8",
"AuthKey": "sample string 6",
"Timestamp": "2026-01-07T20:26:39.0756835+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-01-07T20:26:39.0756835+00:00": 2.0
},
"MonthRange_Start": "2026-01-07T20:26:39.0756835+00:00",
"MonthRange_End": "2026-01-07T20:26:39.0756835+00:00",
"id": "fccd3adf-402f-47d1-900f-c293c27a30d2",
"ConfigId": "77713b73-5830-45c8-8bfd-ced860e10bf8"
},
{
"PlanId": "513dc4bf-074f-4ebc-b707-98cae37eba33",
"CostTypeId": "2a599e8f-3d96-4e57-b05d-57c1d0629442",
"ResourceId": "ede1116a-402b-42c4-abc5-fc261af2cb42",
"RowId": "4545a1c4-8971-479f-a094-a6ec9e8e9d0f",
"UserId": "b87b015c-b09b-4a38-8e84-d1140c0ebef8",
"AuthKey": "sample string 6",
"Timestamp": "2026-01-07T20:26:39.0756835+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-01-07T20:26:39.0756835+00:00": 2.0
},
"MonthRange_Start": "2026-01-07T20:26:39.0756835+00:00",
"MonthRange_End": "2026-01-07T20:26:39.0756835+00:00",
"id": "fccd3adf-402f-47d1-900f-c293c27a30d2",
"ConfigId": "77713b73-5830-45c8-8bfd-ced860e10bf8"
}
]