Create an import job

post

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

ImportJob Post

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : Item
Type: object
Title: Item
Show Source
Nested Schema : primaryFile
Type: object
File to upload.
Back to Top

Response

201 Response

The import job has been created successfully.
Body ()
Root Schema : Empty Response
Type: object
Title: Empty Response
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
Back to Top

Examples

The following example shows how to create a import job by submitting a POST request on the REST resource using cURL.

cURL Command

curl -u username:password -X POST https://{FusionAppsHost}/crmRestApi/atcProductCatalog/11.13.18.05/tmf-api/productCatalogManagement/v4/importJob/' \ --header 'Content-Type: application/json' -D @create_importSpecifications.json | json_pp

Example of Response Body

The following example shows the contents of the response body in JSON format.
{
    "id": 47353,
    "contentType": "application/json",
    "status": "Not Started",
    "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