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": "250cb036-4300-49eb-9706-3b2aeda409e9",
"ResourceId": "fb0d962e-c905-496a-9938-7a86b63c71c0",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-07-21T13:09:45.7718076+00:00",
"DateBetweenEnd": "2026-07-21T13:09:45.7718076+00:00",
"HourOffset": 2,
"PlanId": "459e52cb-183b-4a78-ae90-f7a1a25f3430"
}
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": "96ef00a6-02ab-432c-a715-e0618248082c",
"CostTypeId": "d9b5a885-7143-4be6-9558-0eaa44ca0568",
"ResourceId": "aa303e34-b6dd-4daa-9f78-63b14ed29afd",
"RowId": "fa8a1946-ad95-4f22-b676-e4268339560b",
"UserId": "c2d82369-f2d5-448f-8c74-75433a8ed5f8",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-21T13:09:45.7718076+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-21T13:09:45.7718076+00:00": 2.0
},
"MonthRange_Start": "2026-07-21T13:09:45.7718076+00:00",
"MonthRange_End": "2026-07-21T13:09:45.7718076+00:00",
"id": "29481030-b5ef-4ade-afd8-3129adbdc21c",
"ConfigId": "cdd1b898-3ba6-4a7f-bfb5-80ec1288c691"
},
{
"PlanId": "96ef00a6-02ab-432c-a715-e0618248082c",
"CostTypeId": "d9b5a885-7143-4be6-9558-0eaa44ca0568",
"ResourceId": "aa303e34-b6dd-4daa-9f78-63b14ed29afd",
"RowId": "fa8a1946-ad95-4f22-b676-e4268339560b",
"UserId": "c2d82369-f2d5-448f-8c74-75433a8ed5f8",
"AuthKey": "sample string 6",
"Timestamp": "2026-07-21T13:09:45.7718076+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-07-21T13:09:45.7718076+00:00": 2.0
},
"MonthRange_Start": "2026-07-21T13:09:45.7718076+00:00",
"MonthRange_End": "2026-07-21T13:09:45.7718076+00:00",
"id": "29481030-b5ef-4ade-afd8-3129adbdc21c",
"ConfigId": "cdd1b898-3ba6-4a7f-bfb5-80ec1288c691"
}
]