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": "7c180280-38fd-4873-97f0-5f6abc22d6d7",
"ResourceId": "7ba74535-1c85-4fee-889f-f6aa670c8071",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-08-24T18:26:31.8087119+00:00",
"DateBetweenEnd": "2026-08-24T18:26:31.8087119+00:00",
"HourOffset": 2,
"PlanId": "0edf1cef-92ba-4f11-b0dc-b656d310943b"
}
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": "f5923a87-176a-4259-b230-4018f9dcb832",
"CostTypeId": "5e5bee8a-8b5a-47b0-8f20-502527f7d63a",
"ResourceId": "d7ad4724-1bc8-44ee-80b7-eb0b052d218d",
"RowId": "39930715-78cb-4802-ac58-b79b8e471d12",
"UserId": "078cd81f-0095-46a9-af80-dbbe12b6e83e",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-24T18:26:31.8087119+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-24T18:26:31.8087119+00:00": 2.0
},
"MonthRange_Start": "2026-08-24T18:26:31.8087119+00:00",
"MonthRange_End": "2026-08-24T18:26:31.8087119+00:00",
"id": "f11b5a81-fc0d-4e96-907d-56ed493e37c9",
"ConfigId": "ec78355d-38b9-40ec-8ca2-755961a3edc4"
},
{
"PlanId": "f5923a87-176a-4259-b230-4018f9dcb832",
"CostTypeId": "5e5bee8a-8b5a-47b0-8f20-502527f7d63a",
"ResourceId": "d7ad4724-1bc8-44ee-80b7-eb0b052d218d",
"RowId": "39930715-78cb-4802-ac58-b79b8e471d12",
"UserId": "078cd81f-0095-46a9-af80-dbbe12b6e83e",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-24T18:26:31.8087119+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-24T18:26:31.8087119+00:00": 2.0
},
"MonthRange_Start": "2026-08-24T18:26:31.8087119+00:00",
"MonthRange_End": "2026-08-24T18:26:31.8087119+00:00",
"id": "f11b5a81-fc0d-4e96-907d-56ed493e37c9",
"ConfigId": "ec78355d-38b9-40ec-8ca2-755961a3edc4"
}
]