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": "10f68cc9-954d-4e6a-b972-04eb08bc8549",
"ResourceId": "727193a0-6662-4657-ab0c-acff057e8e3a",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2025-12-13T11:23:23.5951514+00:00",
"DateBetweenEnd": "2025-12-13T11:23:23.5951514+00:00",
"HourOffset": 2,
"PlanId": "d847a1b9-c548-41b1-8e17-cdba36833eab"
}
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": "a07bf341-eb08-4287-93ee-6792e309d076",
"CostTypeId": "bcf6ff03-07d2-452a-8936-d2d677792321",
"ResourceId": "2ef99079-7a1a-42a2-a603-4271a8fdbe6d",
"RowId": "d43f30f8-9c08-4701-865d-9a8e505bab41",
"UserId": "0266b9da-34f9-4a33-b2a0-c1430eb767e8",
"AuthKey": "sample string 6",
"Timestamp": "2025-12-13T11:23:23.5951514+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2025-12-13T11:23:23.5951514+00:00": 2.0
},
"MonthRange_Start": "2025-12-13T11:23:23.5951514+00:00",
"MonthRange_End": "2025-12-13T11:23:23.5951514+00:00",
"id": "9499e19a-90ca-4e48-b453-45280d571d02",
"ConfigId": "20111cdb-eb12-46de-aae1-37bfdfae81a3"
},
{
"PlanId": "a07bf341-eb08-4287-93ee-6792e309d076",
"CostTypeId": "bcf6ff03-07d2-452a-8936-d2d677792321",
"ResourceId": "2ef99079-7a1a-42a2-a603-4271a8fdbe6d",
"RowId": "d43f30f8-9c08-4701-865d-9a8e505bab41",
"UserId": "0266b9da-34f9-4a33-b2a0-c1430eb767e8",
"AuthKey": "sample string 6",
"Timestamp": "2025-12-13T11:23:23.5951514+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2025-12-13T11:23:23.5951514+00:00": 2.0
},
"MonthRange_Start": "2025-12-13T11:23:23.5951514+00:00",
"MonthRange_End": "2025-12-13T11:23:23.5951514+00:00",
"id": "9499e19a-90ca-4e48-b453-45280d571d02",
"ConfigId": "20111cdb-eb12-46de-aae1-37bfdfae81a3"
}
]