Skip to content

getLogs

GET
Use dark colors for code blocksCopy
1
/{orgId}/admin/{itemId}/logs
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
tokenstring¦null
startTimestring¦null
endTimestring¦null
paginationStartinteger(int32)¦null
paginationCountinteger(int32)¦null

Path parameters

NameTypeRequired
orgIdstring
itemIdstring

Response status

StatusMeaningDescriptionSchema
200OK

success

GetLogsResponse
400Bad Request

error

WorkflowExceptionDTO

Examples

Request

Use dark colors for code blocksCopy
1
2
3
# You can also use wget
curl -X GET /{orgId}/admin/{itemId}/logs \
  -H 'Authorization: Bearer <YOUR_TOKEN>'

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"
    }
  ]
}

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