APIs | Description |
---|---|
GET <Informatica Cloud Application Integration URL>/active-bpel/restadmin/scheduler/schedules/?tenantContextId=<organization ID> | View a list of process schedules that run on the Cloud Server within a specific organization. |
GET <Informatica Cloud Application Integration URL>/active-bpel/restadmin/scheduler/schedules/?tenantContextId=<organization ID>&name=<scheduleName> | View a specific process schedule that runs on the Cloud Server within a specific organization. |
GET http://<agentName>:<httpPortNumber>/process-engine/restadmin/scheduler/schedules | View a list of process schedules that run on a specific Secure Agent. |
GET http://<agentName>:<httpPortNumber>/process-engine/restadmin/scheduler/schedules?name=<scheduleName> | View details of a specific process schedule that runs on a specific Secure Agent. |
APIs | Description |
---|---|
POST <Informatica Cloud Application Integration URL>/active-bpel/restadmin/scheduler/schedules | Create a process schedule based on an Informatica Process Designer (IPD) service. Set ipdService to true to create a process schedule based on a BPEL service. The following snippet shows a sample payload when you make an API request: { "tenantContextId": "9kCHfynWgUBfPh8D1FcYyL", "name": "APICreatedSchedule5", "ipdService": true, "once": null, "intraday": { "executeEvery": { "value": 30, "interval": "SECONDS" }, "onlyBetween": null }, "daily": null, "weekly": null, "monthly": null, "runOptions": "SKIP", "serviceName": "Process6-16", "inputDocument": null } Note: The serviceName is the API name of the process. |
POST <Informatica Cloud Application Integration URL>/active-bpel/restadmin/scheduler/schedules | Create a process schedule based on a Business Process Execution Language (BPEL) service. Set ipdService to false to create a process schedule based on a BPEL service. The following snippet shows a sample payload when you make an API request: { "tenantContextId": "9kCHfynWgUBfPh8D1FcYyL", "name": "APIBpelSchedule2", "ipdService": false, "once": null, "intraday": { "executeEvery": { "value": 30, "interval": "SECONDS" }, "onlyBetween": null }, "daily": null, "weekly": null, "monthly": null, "runOptions": "SKIP", "serviceName": "9kCHfynWgUBfPh8D1FcYyL/Process6-16", "inputDocument": { "any": "<spi:initiate xmlns:spi=\"http://schemas.informatica.com/spi/types/2013/12/spi-interface/\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:avos=\"http://schemas.active-endpoints.com/appmodules/screenflow/2010/10/avosScreenflow.xsd\">\n\t\t\t</spi:initiate>", "otherAttributes": {} } } Note: The serviceName is the API name of the process. |
POST http://<agentName>:<httpPortNumber>/process-engine/restadmin/scheduler/schedules | Create a process schedule that runs on a specific Secure Agent. You must include the agent name in the request. The following snippet shows a sample payload when you make an API request: { "tenantContextId": "$public", "name": "agentSch1", "ipdService": true, "once": null, "intraday": { "executeEvery": { "value": 30, "interval": "SECONDS" }, "onlyBetween": null }, "daily": null, "weekly": null, "monthly": null, "runOptions": "SKIP", "serviceName": "ProcessScheduledAgent", "inputDocument": null } Note: The serviceName is the API name of the process. |
APIs | Description |
---|---|
PUT <Informatica Cloud Application Integration URL>/active-bpel/restadmin/scheduler/schedules | Update a process schedule that runs on the Cloud Server. The following snippet shows a sample payload when you make an API request: https://<Cloud Application Integration POD URL>/active-bpel/restadmin/scheduler/schedules { "scheduleId": "<scheduleId>", "name": "<scheduleName>", "runOptions": "SKIP", "serviceName": "<process API Name>", "ipdService": "true", "tenantContextId": "<orgId>", "enabled": true, "once": null, "intraday": { "executeEvery": { "value": 1, "interval": "MINUTES" }, "onlyBetween": null }, "inputDocument": null } |
PUT http://<agentName>:<httpPortNumber>/process-engine/restadmin/scheduler/schedules | Update a process schedule that runs on a specific Secure Agent. https://<Cloud Application Integration POD URL>/active-bpel/restadmin/scheduler/schedules { "scheduleId": "<scheduleId>", "name": "<scheduleName>", "runOptions": "SKIP", "serviceName": "<process API Name>", "ipdService": "true", "tenantContextId": "$public", "enabled": true, "once": null, "intraday": { "executeEvery": { "value": 1, "interval": "MINUTES" }, "onlyBetween": null }, "inputDocument": null } |
APIs | Description |
---|---|
DELETE <Informatica Cloud Application Integration URL>/active-bpel/restadmin/scheduler/schedules | Delete a process schedule that runs on the Cloud Server. The following snippet shows a sample payload when you make an API request: { "scheduleId": [926347078765268992] } |
DELETE http://<agentName>:<httpPortNumber>/process-engine/restadmin/scheduler/schedules | Delete a process schedule that runs on a specific Secure Agent. The following snippet shows a sample payload when you make an API request: { "scheduleId": [104] } |