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": "38b04190-6989-48f4-bf7b-fa201dc4ed64",
"ResourceId": "660f9f0a-3647-46a1-b603-716b637fbc94",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-08-18T16:33:20.4480188+00:00",
"DateBetweenEnd": "2026-08-18T16:33:20.4480188+00:00",
"HourOffset": 2,
"PlanId": "85374c7e-764b-4822-9a3f-15be95792125"
}
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": "aaa9d8e5-89da-4535-82ab-b835c074f7e6",
"CostTypeId": "3dd908ec-e95d-4872-a90d-6d2374a2acc4",
"ResourceId": "8ea115ce-bf39-4e6c-977d-d125ff6194a5",
"RowId": "ba535d66-3ca2-4d57-8870-8f6c9c63b9ef",
"UserId": "66c369dd-0e74-44c5-ab19-a9fd7d5c661e",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-18T16:33:20.4636435+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-18T16:33:20.4636435+00:00": 2.0
},
"MonthRange_Start": "2026-08-18T16:33:20.4636435+00:00",
"MonthRange_End": "2026-08-18T16:33:20.4636435+00:00",
"id": "7b0f4ee8-1d6e-4be4-b6bf-337f494cab55",
"ConfigId": "c48aae6e-592f-4514-b685-52652c19a352"
},
{
"PlanId": "aaa9d8e5-89da-4535-82ab-b835c074f7e6",
"CostTypeId": "3dd908ec-e95d-4872-a90d-6d2374a2acc4",
"ResourceId": "8ea115ce-bf39-4e6c-977d-d125ff6194a5",
"RowId": "ba535d66-3ca2-4d57-8870-8f6c9c63b9ef",
"UserId": "66c369dd-0e74-44c5-ab19-a9fd7d5c661e",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-18T16:33:20.4636435+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-18T16:33:20.4636435+00:00": 2.0
},
"MonthRange_Start": "2026-08-18T16:33:20.4636435+00:00",
"MonthRange_End": "2026-08-18T16:33:20.4636435+00:00",
"id": "7b0f4ee8-1d6e-4be4-b6bf-337f494cab55",
"ConfigId": "c48aae6e-592f-4514-b685-52652c19a352"
}
]