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": "49998119-376f-44f2-ab1f-85381a94edbb",
"ResourceId": "bad85440-1f97-4d31-8b2c-7f61d2df1821",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-09-02T20:08:46.9797424+00:00",
"DateBetweenEnd": "2026-09-02T20:08:46.9797424+00:00",
"HourOffset": 2,
"PlanId": "3c0bf93e-bc37-4b92-bd2a-8b0c7be46bf7"
}
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": "23e8ac0a-fe74-4ab5-873a-1a2ed15ca145",
"CostTypeId": "39650eda-ee1d-4a73-8fc2-b42666c50fd5",
"ResourceId": "1113ddec-3e3c-44e4-82d4-0b2766315a54",
"RowId": "0491c4cb-c9d2-4fff-95f4-0d9d8464e9a7",
"UserId": "dcf65fba-a994-47d7-827b-1b277ed363e0",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-02T20:08:46.9797424+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-02T20:08:46.9797424+00:00": 2.0
},
"MonthRange_Start": "2026-09-02T20:08:46.9797424+00:00",
"MonthRange_End": "2026-09-02T20:08:46.9797424+00:00",
"id": "957935f9-a6ba-4506-9822-d6a3f62b2fe5",
"ConfigId": "5e0406c5-65ab-4226-9d8e-c1f8138671b6"
},
{
"PlanId": "23e8ac0a-fe74-4ab5-873a-1a2ed15ca145",
"CostTypeId": "39650eda-ee1d-4a73-8fc2-b42666c50fd5",
"ResourceId": "1113ddec-3e3c-44e4-82d4-0b2766315a54",
"RowId": "0491c4cb-c9d2-4fff-95f4-0d9d8464e9a7",
"UserId": "dcf65fba-a994-47d7-827b-1b277ed363e0",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-02T20:08:46.9797424+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-02T20:08:46.9797424+00:00": 2.0
},
"MonthRange_Start": "2026-09-02T20:08:46.9797424+00:00",
"MonthRange_End": "2026-09-02T20:08:46.9797424+00:00",
"id": "957935f9-a6ba-4506-9822-d6a3f62b2fe5",
"ConfigId": "5e0406c5-65ab-4226-9d8e-c1f8138671b6"
}
]