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": "c18838e5-7865-404d-a045-3c955a2e9dee",
"ResourceId": "f5f893c3-4cc9-4d53-a423-f621fcedcf8f",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-07-03T11:11:28.1681062+00:00",
"DateBetweenEnd": "2026-07-03T11:11:28.1681062+00:00",
"HourOffset": 2,
"PlanId": "8c8cf1a4-3ff2-41bf-b3f7-05a83058022c"
}
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": "232a177c-590b-429f-b9d6-0d6ebec65173",
"CostTypeId": "506729f9-e13a-466e-82b2-009f4d05b512",
"ResourceId": "3f13b524-45eb-4ba1-aa50-cd1df27fd9f4",
"RowId": "1e94b885-dd07-4015-9d00-f2498ed218d8",
"UserId": "d40f1b8b-eba5-46b5-a573-04ee3c887054",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-03T11:11:28.1837297+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-03T11:11:28.1837297+00:00": 2.0
},
"MonthRange_Start": "2026-07-03T11:11:28.1837297+00:00",
"MonthRange_End": "2026-07-03T11:11:28.1837297+00:00",
"id": "8c0b29fb-7677-464f-807a-e6e9377e67f6",
"ConfigId": "987f99f2-0935-4ec1-81fc-9add416dda51"
},
{
"PlanId": "232a177c-590b-429f-b9d6-0d6ebec65173",
"CostTypeId": "506729f9-e13a-466e-82b2-009f4d05b512",
"ResourceId": "3f13b524-45eb-4ba1-aa50-cd1df27fd9f4",
"RowId": "1e94b885-dd07-4015-9d00-f2498ed218d8",
"UserId": "d40f1b8b-eba5-46b5-a573-04ee3c887054",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-03T11:11:28.1837297+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-03T11:11:28.1837297+00:00": 2.0
},
"MonthRange_Start": "2026-07-03T11:11:28.1837297+00:00",
"MonthRange_End": "2026-07-03T11:11:28.1837297+00:00",
"id": "8c0b29fb-7677-464f-807a-e6e9377e67f6",
"ConfigId": "987f99f2-0935-4ec1-81fc-9add416dda51"
}
]