Table of Contents

Search

  1. Preface
  2. Informatica Intelligent Cloud Services REST API
  3. Platform REST API version 2 resources
  4. Platform REST API version 3 resources
  5. Data Integration REST API
  6. File Ingestion and Replication REST API
  7. Streaming Ingestion and Replication REST API
  8. Model Serve REST API
  9. RunAJob utility
  10. ParamSetCli utility
  11. REST API codes
  12. REST API resource quick references

REST API Reference

REST API Reference

Cleanly stopping a job

Cleanly stopping a job

Use the job resource to cleanly stop a job.

POST request

Use the following URI:
/api/v2/job/stop?cleanStop=true
The following table describes the attributes to use in a job object:
Field
Type
Required
Description
taskId
String
Required if taskName not included.
Task or linear taskflow ID. Use taskId or taskName in the URI.
You can include this task ID when the task is located in the Default folder.
taskFederatedId
String
Required if the task is not located in the Default folder.
Global unique identifier for the task, which includes the folder path to the task.
taskName
String
Required if taskId not included.
Task or linear taskflow name. Use taskId or taskName in the URI.
taskType
String
Yes
The type of task. For
Data Integration
, use one of the following codes:
  • DMASK.
    Masking
    task.
  • DRS.
    Replication
    task.
  • DSS.
    Synchronization
    task.
  • MTT.
    Mapping
    task.
  • PCS. PowerCenter task.
  • WORKFLOW. Linear taskflow.

POST response

The response returns the success object if the request is successful and an error object if an error occurs.

POST request example

To cleanly stop a
mapping
task named MappingTask1, you might use the following request:
POST <serverUrl>/api/v2/job/stop?cleanStop=true HTTP/<HTTP version> Content-Type: application/json Accept: application/json icSessionId: <SessionId> { "@type": "job", "taskName": "MappingTask1", "taskType": "MTT" }

Back to Top

0 COMMENTS

We’d like to hear from you!