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": "22c17466-f940-4f10-9cca-5043aa963b99",
"ResourceId": "02b0ed93-59a1-46a9-8548-e7948be601a6",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-09-08T21:16:22.5994115+00:00",
"DateBetweenEnd": "2026-09-08T21:16:22.5994115+00:00",
"HourOffset": 2,
"PlanId": "3c9a41d2-11fe-4f3f-ac84-200b911c0682"
}
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": "76b955f8-2c60-4496-8233-6ca6ad10b3d8",
"CostTypeId": "6c4a971c-07b9-4701-93e4-3ab94972644a",
"ResourceId": "d767d1e8-8639-49a6-aaf9-0a62562be723",
"RowId": "6796c643-f404-432b-989d-681f35b5e6f8",
"UserId": "4e0a1edc-65aa-47a6-b5eb-1ad131773c0c",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-08T21:16:22.5994115+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-08T21:16:22.5994115+00:00": 2.0
},
"MonthRange_Start": "2026-09-08T21:16:22.5994115+00:00",
"MonthRange_End": "2026-09-08T21:16:22.5994115+00:00",
"id": "5d476586-6679-48c6-9f69-1bdb128d0e81",
"ConfigId": "44d544ba-6362-421b-8523-7fdfb8afdc3d"
},
{
"PlanId": "76b955f8-2c60-4496-8233-6ca6ad10b3d8",
"CostTypeId": "6c4a971c-07b9-4701-93e4-3ab94972644a",
"ResourceId": "d767d1e8-8639-49a6-aaf9-0a62562be723",
"RowId": "6796c643-f404-432b-989d-681f35b5e6f8",
"UserId": "4e0a1edc-65aa-47a6-b5eb-1ad131773c0c",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-08T21:16:22.5994115+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-08T21:16:22.5994115+00:00": 2.0
},
"MonthRange_Start": "2026-09-08T21:16:22.5994115+00:00",
"MonthRange_End": "2026-09-08T21:16:22.5994115+00:00",
"id": "5d476586-6679-48c6-9f69-1bdb128d0e81",
"ConfigId": "44d544ba-6362-421b-8523-7fdfb8afdc3d"
}
]