RestSmartExecutor Resource

GET /plugins

Response Body
media type data type description
application/json;charset=UTF-8 string

Example

Request
GET /plugins
Content-Type: */*
Accept: application/json;charset=UTF-8

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8

                
...
                
              

GET /plugins/{NAME}/executions

Request Parameters
name type description
NAME path
Response Body
media type data type description
application/json;charset=UTF-8 string

Example

Request
GET /plugins/{NAME}/executions
Content-Type: */*
Accept: application/json;charset=UTF-8

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8

                
...
                
              

POST /plugins/{NAME}/executions

Request Parameters
name type description
NAME path
Request Body
media type data type
application/json;charset=UTF-8 string
text/plain string
Response Body
media type data type description
text/plain string

Example

Request
POST /plugins/{NAME}/executions
Content-Type: application/json;charset=UTF-8
Accept: text/plain

                
...
                
              
Response
HTTP/1.1 201 Created
Content-Type: text/plain

                
...
                
              

DELETE /plugins/{NAME}/executions/{UUID}

Request Parameters
name type description constraints
NAME path  
UUID path  
unschedule query boolean
Response Body
media type data type description
*/* object

Example

Request
DELETE /plugins/{NAME}/executions/{UUID}
Content-Type: */*
Accept: */*

                
...
                
              
Response
HTTP/1.1 204 No Content
Content-Type: */*

                
...
                
              

GET /plugins/{NAME}/executions/{UUID}

Request Parameters
name type description constraints
NAME path  
UUID path  
iteration query int
Response Body
media type data type description
application/json;charset=UTF-8 string

Example

Request
GET /plugins/{NAME}/executions/{UUID}
Content-Type: */*
Accept: application/json;charset=UTF-8

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8

                
...
                
              

PURGE /plugins/{NAME}/executions/{UUID}

Request Parameters
name type description
NAME path
UUID path
Response Body
media type data type description
*/* object

Example

Request
PURGE /plugins/{NAME}/executions/{UUID}
Content-Type: */*
Accept: */*

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: */*

                
...