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": "8c0b2772-87e1-4349-8d72-c29e798f7be7",
"ResourceId": "19a8be94-12bd-4f70-832b-513878b07cd6",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-09-24T02:27:48.3255451+00:00",
"DateBetweenEnd": "2026-09-24T02:27:48.3255451+00:00",
"HourOffset": 2,
"PlanId": "cb04a1a5-4635-4d8a-bd0f-32bdb21db65b"
}
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": "a1c47b65-5580-4f4b-ab6f-7e25db3009db",
"CostTypeId": "0a174c24-8aff-4f52-b26d-db530af572ee",
"ResourceId": "2e7e84c7-0951-4741-97f5-367b3429dcec",
"RowId": "012f9929-d40f-46ad-8a54-3d34ae17356f",
"UserId": "f7b807de-d98e-4f56-b871-7cc2cac3d8b2",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-24T02:27:48.3255451+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-24T02:27:48.3255451+00:00": 2.0
},
"MonthRange_Start": "2026-09-24T02:27:48.3255451+00:00",
"MonthRange_End": "2026-09-24T02:27:48.3255451+00:00",
"id": "728c65f9-6563-474d-b689-753d5357b60b",
"ConfigId": "366addee-1e0b-4203-980f-40f1b7ba54da"
},
{
"PlanId": "a1c47b65-5580-4f4b-ab6f-7e25db3009db",
"CostTypeId": "0a174c24-8aff-4f52-b26d-db530af572ee",
"ResourceId": "2e7e84c7-0951-4741-97f5-367b3429dcec",
"RowId": "012f9929-d40f-46ad-8a54-3d34ae17356f",
"UserId": "f7b807de-d98e-4f56-b871-7cc2cac3d8b2",
"AuthKey": "sample string 6",
"Timestamp": "2026-09-24T02:27:48.3255451+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-09-24T02:27:48.3255451+00:00": 2.0
},
"MonthRange_Start": "2026-09-24T02:27:48.3255451+00:00",
"MonthRange_End": "2026-09-24T02:27:48.3255451+00:00",
"id": "728c65f9-6563-474d-b689-753d5357b60b",
"ConfigId": "366addee-1e0b-4203-980f-40f1b7ba54da"
}
]