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": "9ee435f7-d888-4bf1-84d5-4923d83bcac1",
"ResourceId": "97b0cd80-2d40-4d82-97b4-36280aadcc2d",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-06-30T20:52:45.4638611+00:00",
"DateBetweenEnd": "2026-06-30T20:52:45.4638611+00:00",
"HourOffset": 2,
"PlanId": "bd20aea0-b68a-48ce-9a44-0b48f2b19442"
}
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": "8dc44c08-18e7-4295-a3a1-56d45911d4c3",
"CostTypeId": "99132877-3139-4bd1-bc77-d75c8d71e818",
"ResourceId": "72416a06-8d61-497c-9004-84a9cda75fe3",
"RowId": "aefd9886-925a-4b05-8d67-d83fc40d2e9c",
"UserId": "07ab67fb-e7b4-40e1-b14c-b82dfff5f0d5",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-30T20:52:45.4638611+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-30T20:52:45.4638611+00:00": 2.0
},
"MonthRange_Start": "2026-06-30T20:52:45.4638611+00:00",
"MonthRange_End": "2026-06-30T20:52:45.4638611+00:00",
"id": "a694c87f-3ac9-477f-8ea6-9bee908cc845",
"ConfigId": "1375f79b-3e3e-47c7-9e11-a8c93f3ee592"
},
{
"PlanId": "8dc44c08-18e7-4295-a3a1-56d45911d4c3",
"CostTypeId": "99132877-3139-4bd1-bc77-d75c8d71e818",
"ResourceId": "72416a06-8d61-497c-9004-84a9cda75fe3",
"RowId": "aefd9886-925a-4b05-8d67-d83fc40d2e9c",
"UserId": "07ab67fb-e7b4-40e1-b14c-b82dfff5f0d5",
"AuthKey": "sample string 6",
"Timestamp": "2026-06-30T20:52:45.4638611+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-06-30T20:52:45.4638611+00:00": 2.0
},
"MonthRange_Start": "2026-06-30T20:52:45.4638611+00:00",
"MonthRange_End": "2026-06-30T20:52:45.4638611+00:00",
"id": "a694c87f-3ac9-477f-8ea6-9bee908cc845",
"ConfigId": "1375f79b-3e3e-47c7-9e11-a8c93f3ee592"
}
]