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": "a214d623-84c2-422d-a11e-fb638871683b",
"ResourceId": "d61a6b4f-c382-4f56-894c-7bfef63f026b",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-05-31T06:42:08.6747718+00:00",
"DateBetweenEnd": "2026-05-31T06:42:08.6747718+00:00",
"HourOffset": 2,
"PlanId": "8660ace0-f055-4f18-9dc4-31a9c78eb1ee"
}
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": "607ffde5-6088-4eba-bbdc-594c228c189d",
"CostTypeId": "828a6cc8-e3b9-4857-889f-dc49965e82ea",
"ResourceId": "45eaeab0-92b0-4418-b5bf-b746f329f37a",
"RowId": "6869815a-5348-43e4-b11a-2a5ba4afac1d",
"UserId": "42af6bb2-158c-4989-aed2-78a14cb1aa31",
"AuthKey": "sample string 6",
"Timestamp": "2026-05-31T06:42:08.6747718+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-05-31T06:42:08.6747718+00:00": 2.0
},
"MonthRange_Start": "2026-05-31T06:42:08.6747718+00:00",
"MonthRange_End": "2026-05-31T06:42:08.6747718+00:00",
"id": "7d049bc7-f3e2-4121-a5b2-bf7a8d7dcd12",
"ConfigId": "8e4d5810-b582-4c02-b635-8f0a22082fe1"
},
{
"PlanId": "607ffde5-6088-4eba-bbdc-594c228c189d",
"CostTypeId": "828a6cc8-e3b9-4857-889f-dc49965e82ea",
"ResourceId": "45eaeab0-92b0-4418-b5bf-b746f329f37a",
"RowId": "6869815a-5348-43e4-b11a-2a5ba4afac1d",
"UserId": "42af6bb2-158c-4989-aed2-78a14cb1aa31",
"AuthKey": "sample string 6",
"Timestamp": "2026-05-31T06:42:08.6747718+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-05-31T06:42:08.6747718+00:00": 2.0
},
"MonthRange_Start": "2026-05-31T06:42:08.6747718+00:00",
"MonthRange_End": "2026-05-31T06:42:08.6747718+00:00",
"id": "7d049bc7-f3e2-4121-a5b2-bf7a8d7dcd12",
"ConfigId": "8e4d5810-b582-4c02-b635-8f0a22082fe1"
}
]