Export a Job's log

get

/cloudapi/restapi/user/status/{jobId}/log

This operation exports a TXT file containing a summary of actions completed for a given job {jobId}.

Request

Supported Media Types
Path Parameters
  • Job Id corresponding to a User Create/Modify operation for which the logs are requested.
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : schema
Type: file

400 Response

Invalid input, Please check.

500 Response

Internal Server Error. Underlying Identity Management System threw an error, Please check the logs.
Back to Top

Examples

Method

GET

Response Content Type

text/plain

Operation

/cloudapi/restapi/user/status/{jobId}/log

cURL Example

REQUEST URL: http://<hostname>:<port>/cloudapi/restapi/user/status/40870/log

curl -X GET "http://<hostname>:<port>/cloudapi/restapi/user/status/40870/log" -H "accept: application/octet-stream"

Response Body Example

2018-05-15 17:38:51 EDT [UserResource] - Creating/Assigning Application Access for Users: 1

2018-05-15 17:38:51 EDT [UserResource] - Processing User(1/1): JSMITH

2018-05-15 17:38:53 EDT [UserResourceApi] - Completed Assigning Application Access [PrimaveraUnifierProduction, PrimaveraCloudAdmin]

2018-05-15 17:38:53 EDT [UserResource] - Created User: JSMITH

Back to Top