Get details of a job

get

/api/v4/jobresource/jobinstance/{jobinstanceid}

Versions Supported:

v4

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : schema
Type: object

404 Response

Requested resource could not be found.

500 Response

An unexpected error occurred during the request.
Back to Top

Examples

Example Request:

/api/v4/jobresource/jobinstance/123

Example Output:

 {
    "completed": "4",
    "createdBy": "daas_user1",
    "createdOn": "2014-03-26 08:20:02.974237",
    "duplicated": "0",
    "failed": "4",
    "fileName": " "test ".csv",
    "jobDefinition": {
        "createdBy": "daas_user1",
        "createdOn": "2014-03-26 08:20:02.969505",
        "description": "Matching data",
        "enrichJobParams": {
            "enrichMapId": "10002",
            "enrichMapName": "SalesCloudContactMatch_Release8Bundle8",
            "qualityThreshold": "-1"
        },
        "jobId": "10095",
        "modifiedBy": "daas_user1",
        "modifiedOn": "2014-03-26 08:20:02.969505",
        "name": " "test "",
        "partyType": "COMPANY",
        "scheduleMode": "IMMEDIATE",
        "scheduleType": "IMMEDIATE",
        "searchType": "COMPANIES",
        "status": "ACTIVE",
        "type": "ENRICH"
    },
    "jobInstanceId": "10095",
    "modifiedBy": "daas_user1",
    "modifiedOn": "2014-03-26 08:20:03.561359",
    "rejected": "2",
    "status": "COMPLETED"
}
Back to Top