POST api/audit/tasks

Gets a list of Task Audits based on the passed filter values.

Request Information

URI Parameters

None.

Body Parameters

Audit_Tasks_Query
NameDescriptionTypeAdditional information
Action

string

None.

UserId

globally unique identifier

None.

ResourceId

globally unique identifier

None.

Fields

string

None.

DateBetweenStart

date

None.

DateBetweenEnd

date

None.

HourOffset

integer

None.

PlanId

globally unique identifier

None.

TaskId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Action": "sample string 1",
  "UserId": "6c6a1b62-f024-4ce0-8be4-a1449cd102bb",
  "ResourceId": "fd80362a-f2a1-4f4e-84c7-861b21687b33",
  "Fields": "sample string 2",
  "DateBetweenStart": "2024-10-17T01:08:36.4437188+00:00",
  "DateBetweenEnd": "2024-10-17T01:08:36.4437188+00:00",
  "HourOffset": 3,
  "PlanId": "4fcded96-09a8-4beb-888b-eede9aecc9dc",
  "TaskId": "8cc43fe6-87e6-4d1f-8076-42f1606c7b3c"
}

Response Information

Resource Description

Collection of Audit_Tasks
NameDescriptionTypeAdditional information
TaskId

globally unique identifier

None.

WorkTypeId

globally unique identifier

None.

TaskName

string

None.

ParentName

string

None.

PlanId

globally unique identifier

None.

UserId

globally unique identifier

None.

AuthKey

string

None.

Action

string

None.

Timestamp

date

None.

UpdatedFieldValues

Dictionary of string [key] and Object [value]

None.

id

globally unique identifier

None.

ConfigId

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TaskId": "514b8f69-6bc0-49cf-b76f-edb43ac410ed",
    "WorkTypeId": "aca6b25c-3496-46c0-83fc-7dcbf1155501",
    "TaskName": "sample string 3",
    "ParentName": "sample string 4",
    "PlanId": "cf216f8d-20b8-44f8-95cc-2538aa96aa7a",
    "UserId": "24146fc6-15e3-44a8-bc55-a5e50e5e5629",
    "AuthKey": "sample string 7",
    "Action": "sample string 8",
    "Timestamp": "2024-10-17T01:08:36.4437188+00:00",
    "UpdatedFieldValues": {
      "sample string 1": {},
      "sample string 3": {}
    },
    "id": "c52c7d5d-807c-44d5-b905-a9155fae4457",
    "ConfigId": "275cc4bf-9e07-41ad-912a-2f1eb8bacc9a"
  },
  {
    "TaskId": "514b8f69-6bc0-49cf-b76f-edb43ac410ed",
    "WorkTypeId": "aca6b25c-3496-46c0-83fc-7dcbf1155501",
    "TaskName": "sample string 3",
    "ParentName": "sample string 4",
    "PlanId": "cf216f8d-20b8-44f8-95cc-2538aa96aa7a",
    "UserId": "24146fc6-15e3-44a8-bc55-a5e50e5e5629",
    "AuthKey": "sample string 7",
    "Action": "sample string 8",
    "Timestamp": "2024-10-17T01:08:36.4437188+00:00",
    "UpdatedFieldValues": {
      "sample string 1": {},
      "sample string 3": {}
    },
    "id": "c52c7d5d-807c-44d5-b905-a9155fae4457",
    "ConfigId": "275cc4bf-9e07-41ad-912a-2f1eb8bacc9a"
  }
]