Get an import job

get

https://{FusionAppsHost}/crmRestApi/atcProductCatalog/11.13.18.05/tmf-api/productCatalogManagement/v5/importJob/{id}

ImportJob Get By Id

Request

Path Parameters
Query Parameters
  • The comma-separated field names that are returned in the response. The field names are the names that you specify when you create or retrieve a resource.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : ImportJobOracle
Title: ImportJobOracle
Match All
Show Source
Nested Schema : ImportJob
Type: object
Title: ImportJob
Discriminator: @type

Discriminator Values

Show Source
Nested Schema : ImportJobOracle-allOf[1]
Type: object
Show Source
Nested Schema : importSummary
Type: object
Show Source
Nested Schema : resources
Type: array
Show Source
Nested Schema : ImportSummaryResource
Type: object
Title: ImportSummaryResource
This object holds imported resource details like name and count
Show Source

400 Response

Your request couldn't be processed because it contains missing or invalid information, such as a validation error on an input field, a missing required value, and so forth.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

401 Response

Your request isn't authorized. The authentication credentials included with this request are missing or invalid.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

404 Response

Your request includes a resource URI that doesn't exist.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

500 Response

The server encountered something unexpected that prevented it from completing the request.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

501 Response

The server doesn't support the functionality required to fulfill the request.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source
Back to Top

Examples

The following example shows how to get the status of an import job by submitting a GET request on the REST resource using cURL.

curl -u username:password -X GET https://{FusionAppsHost}/crmRestApi/atcProductCatalog/11.13.18.05/tmf-api/productCatalogManagement/v5/importJob/47353

Example of Response Body

The following example shows the contents of the response body in JSON format>:

{
    "id": 47353,
    "contentType": "application/json",
    "status": "Complete",
    "href": "https://{FusionAppsHost}/crmRestApi/atcProductCatalog/11.13.18.05/tmf-api/productCatalogManagement/v4/importJob/47353",
    "path": "tmf-api/productCatalogManagement/v4/importJob/Specifications_72.json",
    "creationDate": "2020-08-20 18:28:09.974",
    "@type": "ImportJob"
}
Back to Top