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": "a5709ecf-194c-4b28-ae78-ffd507807bde",
"ResourceId": "201c7a17-7f4d-4893-9d9b-e390fc14a9b5",
"Columns": [
"sample string 1",
"sample string 2"
],
"DateBetweenStart": "2026-03-29T02:29:48.4801852+00:00",
"DateBetweenEnd": "2026-03-29T02:29:48.4801852+00:00",
"HourOffset": 2,
"PlanId": "c07a0fa0-5ba0-48f9-bddc-8619bde883ea"
}
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": "fe03eaa4-1177-4d35-a8db-66fcb05e099b",
"CostTypeId": "6659c774-4633-48f2-bfc9-79352d41daa4",
"ResourceId": "f550cba0-0e86-46c6-85ea-6e18d3523707",
"RowId": "fbe4ac0c-7491-480d-bae7-f81ec71b5c93",
"UserId": "ca488337-2c7f-451a-a538-adc2a49e5f62",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-29T02:29:48.4801852+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-29T02:29:48.4801852+00:00": 2.0
},
"MonthRange_Start": "2026-03-29T02:29:48.4801852+00:00",
"MonthRange_End": "2026-03-29T02:29:48.4801852+00:00",
"id": "1f992964-ec41-459f-8c70-91e31bb6bf5b",
"ConfigId": "5d85c609-323a-4b67-a9d8-95fdc7d81ee0"
},
{
"PlanId": "fe03eaa4-1177-4d35-a8db-66fcb05e099b",
"CostTypeId": "6659c774-4633-48f2-bfc9-79352d41daa4",
"ResourceId": "f550cba0-0e86-46c6-85ea-6e18d3523707",
"RowId": "fbe4ac0c-7491-480d-bae7-f81ec71b5c93",
"UserId": "ca488337-2c7f-451a-a538-adc2a49e5f62",
"AuthKey": "sample string 6",
"Timestamp": "2026-03-29T02:29:48.4801852+00:00",
"Action": "sample string 8",
"UpdatedColumnValues": {
"2026-03-29T02:29:48.4801852+00:00": 2.0
},
"MonthRange_Start": "2026-03-29T02:29:48.4801852+00:00",
"MonthRange_End": "2026-03-29T02:29:48.4801852+00:00",
"id": "1f992964-ec41-459f-8c70-91e31bb6bf5b",
"ConfigId": "5d85c609-323a-4b67-a9d8-95fdc7d81ee0"
}
]