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
Parameter | Required | Description | |
---|---|---|---|
Headers | Content-Type | Yes | Must be Content-Type: application/json . |
EnvironmentUrl | Yes | Environment URL of the tenant. For example: https://dev.reltio.com | |
Authorization | Yes | Reltio access token in the form Bearer: <<token>> , see Authentication API. | |
TenantId | Yes | Tenant Id: data is extracted from this tenant. Value: {{tenantID}} . | |
Query | limit | No | The number of jobs in response. The default value is |
activeOnly | No | If true only active jobs (SCHEDULED , IDLE and PROCESSING jobs) are displayed.The default value is |
Example:
Request: Get jobs
GET https://test-dnbconnector.reltio.com/b2bIntegration/dnb/batch
[
{
"identifier": 5676830073815040,
"status": "FAILED",
"createdDate": 1550483013000,
"updatedDate": 1550483117000
},
{
"identifier": 5717271485874176,
"status": "COMPLETED",
"createdDate": 1550475615000,
"updatedDate": 1550475945000
},
{
"identifier": 5639274879778816,
"status": "FAILED",
"createdDate": 1550475575000,
"updatedDate": 1550475582000
}
]