GET api/Account/GetAutomationLogsForOrganization?organizationId={organizationId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
organizationId

integer

Required

Body Parameters

None.

Response Information

Resource Description

ApiResultOfListOfAutomationLogRequest
NameDescriptionTypeAdditional information
data

Collection of AutomationLogRequest

None.

status

string

None.

code

string

None.

message

string

None.

success

boolean

None.

more_info

string

None.

Response Formats

application/json, text/json

Sample:
{
  "code": "sample string 2",
  "status": "sample string 1",
  "message": "sample string 3",
  "more_info": "sample string 5",
  "data": [
    {
      "BatchId": 1,
      "AutomationStepsId": 2,
      "Response": "sample string 3",
      "ErrorLog": "sample string 4",
      "Status": 1,
      "Time": "2026-06-04T16:32:10.9239399+00:00"
    },
    {
      "BatchId": 1,
      "AutomationStepsId": 2,
      "Response": "sample string 3",
      "ErrorLog": "sample string 4",
      "Status": 1,
      "Time": "2026-06-04T16:32:10.9239399+00:00"
    }
  ],
  "success": true
}

application/xml, text/xml

Sample:
<ApiResultOfArrayOfAutomationLogRequestz8JELYxv xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DomainObject.Common">
  <Code>sample string 2</Code>
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/ClearDrive.DomainObject.Automation">
    <d2p1:AutomationLogRequest>
      <d2p1:AutomationStepsId>2</d2p1:AutomationStepsId>
      <d2p1:BatchId>1</d2p1:BatchId>
      <d2p1:ErrorLog>sample string 4</d2p1:ErrorLog>
      <d2p1:Response>sample string 3</d2p1:Response>
      <d2p1:Status>Started</d2p1:Status>
      <d2p1:Time>2026-06-04T16:32:10.9239399+00:00</d2p1:Time>
    </d2p1:AutomationLogRequest>
    <d2p1:AutomationLogRequest>
      <d2p1:AutomationStepsId>2</d2p1:AutomationStepsId>
      <d2p1:BatchId>1</d2p1:BatchId>
      <d2p1:ErrorLog>sample string 4</d2p1:ErrorLog>
      <d2p1:Response>sample string 3</d2p1:Response>
      <d2p1:Status>Started</d2p1:Status>
      <d2p1:Time>2026-06-04T16:32:10.9239399+00:00</d2p1:Time>
    </d2p1:AutomationLogRequest>
  </Data>
  <Message>sample string 3</Message>
  <MoreInfo>sample string 5</MoreInfo>
  <Response>true</Response>
  <Success>sample string 1</Success>
</ApiResultOfArrayOfAutomationLogRequestz8JELYxv>