getLogs

Click to copy

Get Workflow Manager Server logs

Gets Workflow Manager Server logs using query parameters. The adminAdvanced or adminBasic privilege is required. The format of logs to be displayed is defined by paginationStart and paginationCount.

Query parameters

NameTypeRequired

token

string

startTime

string

endTime

string

paginationStart

integer(int32)

paginationCount

integer(int32)

Path parameters

NameTypeRequired

orgId

string

itemId

string

Examples

Request

Use dark colors for code blocksCopy
1
2
3
4
# You can also use wget
curl -X GET /{orgId}/admin/{itemId}/logs \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

Response

200 Response

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
{
  "logs": [
    {
      "logLevel": "WARN",
      "message": "string",
      "jobId": "string",
      "stepId": "string",
      "createdDate": "2019-08-24T14:15:22Z",
      "createdUser": "string"
    }
  ]
}
StatusMeaningDescriptionSchema

200

OK

success

GetLogsResponse

400

Bad Request

error

WorkflowExceptionDTO

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.