Skip to content
Jachym Cepicky edited this page Jul 16, 2016 · 1 revision

Processes

Processes published in PyWPS instance

/processes

Controls running processes

Method Action Format Status code
GET Return list of running processes JSON 200
POST 405
PUT 405
DELETE 405

/processes/<uuid>

Controls running process

Method Action Format Status code Parameters
GET Return running description and status JSON 200
POST 405
PUT Manipulate running process JSON 200 action
DELETE Stop running process JSON 200

Parameters

action - pause or resume

Response

success - true or false

Example

http://localhost/wps/processes/slakdfj-234-ASDF-234 with PUT request {"action": "pause"} returns {"success": "true"}