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": "bc694eec-180f-4e88-baa6-d557a5178518",
"ResourceId": "7a554c45-4c79-4ff5-a8a2-55304c663c5d",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-08-12T14:32:17.7493298+00:00",
"DateBetweenEnd": "2026-08-12T14:32:17.7493298+00:00",
"HourOffset": 2,
"PlanId": "8e88db18-96c7-4ea7-b2b0-775434a7034c"
}
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": "12facb6b-cb41-495e-bba1-bd3d55cb1135",
"CostTypeId": "4dd96b4f-b31a-44c6-b492-97b09bf31b32",
"ResourceId": "0132bf5b-1b2c-4d8e-9ce6-e049664fea64",
"RowId": "657401e2-0692-4c67-8684-d2540ebf7783",
"UserId": "d5fb5ecd-e8a9-4bc0-b311-c170ad1d4dbd",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-12T14:32:17.7493298+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-12T14:32:17.7493298+00:00": 2.0
},
"MonthRange_Start": "2026-08-12T14:32:17.7493298+00:00",
"MonthRange_End": "2026-08-12T14:32:17.7493298+00:00",
"id": "07b30730-d2d7-47bf-bb76-2479ba37f793",
"ConfigId": "9df0c10e-43a1-4b2c-86e4-68784865b4f6"
},
{
"PlanId": "12facb6b-cb41-495e-bba1-bd3d55cb1135",
"CostTypeId": "4dd96b4f-b31a-44c6-b492-97b09bf31b32",
"ResourceId": "0132bf5b-1b2c-4d8e-9ce6-e049664fea64",
"RowId": "657401e2-0692-4c67-8684-d2540ebf7783",
"UserId": "d5fb5ecd-e8a9-4bc0-b311-c170ad1d4dbd",
"AuthKey": "sample string 6",
"Timestamp": "2026-08-12T14:32:17.7493298+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-08-12T14:32:17.7493298+00:00": 2.0
},
"MonthRange_Start": "2026-08-12T14:32:17.7493298+00:00",
"MonthRange_End": "2026-08-12T14:32:17.7493298+00:00",
"id": "07b30730-d2d7-47bf-bb76-2479ba37f793",
"ConfigId": "9df0c10e-43a1-4b2c-86e4-68784865b4f6"
}
]