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": "2c2da6e3-f388-4637-9554-66dab458bbfd",
"ResourceId": "251cdac4-5e67-4f04-b476-b7d01db075c9",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-08-15T15:31:50.7539726+00:00",
"DateBetweenEnd": "2026-08-15T15:31:50.7539726+00:00",
"HourOffset": 2,
"PlanId": "80d674bf-10f5-4d33-8541-0bb97fb5a304"
}
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": "3a31b346-d9c2-4412-9a1e-9bc5720713f3",
"CostTypeId": "10f54728-ab51-4ab3-ab11-580837b47acc",
"ResourceId": "bd73a946-66dc-4cc9-8472-2fa7783a91f9",
"RowId": "ab1c0333-9989-4b8b-9493-f53eedd6aeee",
"UserId": "7f5b6a11-716f-432c-8a39-14d9b61322c4",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-15T15:31:50.7539726+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-15T15:31:50.7539726+00:00": 2.0
},
"MonthRange_Start": "2026-08-15T15:31:50.7539726+00:00",
"MonthRange_End": "2026-08-15T15:31:50.7539726+00:00",
"id": "d7a95072-2eb8-4b46-9206-acc26afa2c98",
"ConfigId": "2afa120c-911c-429b-8ef4-3b62bbd7a958"
},
{
"PlanId": "3a31b346-d9c2-4412-9a1e-9bc5720713f3",
"CostTypeId": "10f54728-ab51-4ab3-ab11-580837b47acc",
"ResourceId": "bd73a946-66dc-4cc9-8472-2fa7783a91f9",
"RowId": "ab1c0333-9989-4b8b-9493-f53eedd6aeee",
"UserId": "7f5b6a11-716f-432c-8a39-14d9b61322c4",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-15T15:31:50.7539726+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-15T15:31:50.7539726+00:00": 2.0
},
"MonthRange_Start": "2026-08-15T15:31:50.7539726+00:00",
"MonthRange_End": "2026-08-15T15:31:50.7539726+00:00",
"id": "d7a95072-2eb8-4b46-9206-acc26afa2c98",
"ConfigId": "2afa120c-911c-429b-8ef4-3b62bbd7a958"
}
]