Get an import job

get

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

Returns the import job that matches the specified ID, including its current status and details.

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

The import job was returned successfully.
Body ()
Root Schema : ImportJobOracle
Title: ImportJobOracle
Match All
Show Source
  • ImportJob
    Title: ImportJob
    Discriminator: { "propertyName":"@type", "mapping":{ "ImportJob":"#/components/schemas/ImportJob", "ImportJobOracle":"#/components/schemas/ImportJobOracle" } }
    The import job resource.
  • ImportJobOracle-allOf[1]
Nested Schema : ImportJob
Type: object
Title: ImportJob
Discriminator: @type

Discriminator Values

The import job resource.
Show Source
Nested Schema : ImportJobOracle-allOf[1]
Type: object
Show Source
Nested Schema : importSummary
Type: object
The summary of the import job.
Show Source
Nested Schema : resources
Type: array
A list of resources included in the import summary.
Show Source
Nested Schema : ImportSummaryResource
Type: object
Title: ImportSummaryResource
The object that contains imported resource details, such as 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
The error resource.
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
The error resource.
Show Source

404 Response

The resource with the specified URI couldn't be found.
Body ()
Root Schema : Error
Type: object
Title: Error
The error resource.
Show Source

500 Response

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

501 Response

The server doesn't support the functionality required to fulfill the request.
Body ()
Root Schema : Error
Type: object
Title: Error
The error resource.
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