Accelerate the Value of Data

Get Jobs List

Learn about the operation to get a list of D&B connector jobs.

You can get the jobs list for the tenant started on the same connector instance.

The jobs are ordered by the timestamp of jobs created in descending order in groups by job status.

Request

GET {DnBConnectorUri}/batch
Table 1. Parameters
Parameter Required Description
HeadersContent-TypeYes Must be Content-Type: application/json.
EnvironmentUrlYesEnvironment URL of the tenant.

For example: https://dev.reltio.com

AuthorizationYesReltio access token in the form Bearer: <<token>>, see Authentication API.
TenantIdYesTenant Id: data is extracted from this tenant. Value: {{tenantID}}.
QuerylimitNoThe number of jobs in response.

The default value is 10.

activeOnlyNoIf true only active jobs (SCHEDULED, IDLE and PROCESSING jobs) are displayed.

The default value is false.

Example:

Request: Get jobs

GET https://test-dnbconnector.reltio.com/b2bIntegration/dnb/batch
Response: Jobs list
[
    {
        "identifier": 5676830073815040,
        "status": "FAILED",
        "createdDate": 1550483013000,
        "updatedDate": 1550483117000
    },
    {
        "identifier": 5717271485874176,
        "status": "COMPLETED",
        "createdDate": 1550475615000,
        "updatedDate": 1550475945000
    },
    {
        "identifier": 5639274879778816,
        "status": "FAILED",
        "createdDate": 1550475575000,
        "updatedDate": 1550475582000
    }
]