GET
/{orgId}/admin/{itemId}/logsGets 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
| Name | Type | Required |
|---|---|---|
token | string¦null | |
start | string¦null | |
end | string¦null | |
pagination | integer(int32)¦null | |
pagination | integer(int32)¦null |
Path parameters
| Name | Type | Required |
|---|---|---|
org | string | |
item | string |
Response status
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | success | GetLogsResponse |
| 400 | Bad Request | error | WorkflowExceptionDTO |
Examples
Request
# You can also use wget
curl -X GET /{orgId}/admin/{itemId}/logs \
-H 'Authorization: Bearer <YOUR_TOKEN>'Response
{
"logs": [
{
"logLevel": "WARN",
"message": "string",
"jobId": "string",
"stepId": "string",
"createdDate": "2019-08-24T14:15:22Z",
"createdUser": "string"
}
]
}