Fork me on GitHub
Phraseanet Documentation

Start a task

About

Start a task and return its status

/api/v1/monitor/task/{task_id}/start/
Informations  
HTTP Method POST
Requires Authentication Yes

Parameters

Parameters Type Information
task_id integer The task id

Response Fields

Field Description
task The task you’re monitoring

Response sample

{
    "meta": {
        "api_version": "1.3",
        "request": "POST /api/v1/monitor/task/2/start/",
        "response_time": "2012-06-13T14:43:00+02:00",
        "http_code": 200,
        "error_type": null,
        "error_message": null,
        "error_details": null,
        "charset": "UTF-8"
    },
    "response": {
        "task": {
            "id": 2,
            "name": "Création des sous définitions",
            "state": "started",
            "pid": 15784,
            "title": "Subviews creation",
            "last_exec_time": "2012-06-13T14:42:38+02:00"
        }
    }
}