Movenium REST API 1.1

Documentation

findRow

Call: GET /<form>/<id> (ie. GET /worktimes/123)


Call returns:

example if row is found

status: 200

{
    "worktime": {
        "row_info": {
            "created": "2014-01-16 15:26:17",
            "modified": null,
            "partnerid": "30848",
            "creatorid": "229215",
            "status": "normal",
            "privilege_remove": false,
            "privilege_edit": false
        },
        "id": 123,
        "date": "2014-01-15",
        "status": "open",
        "user": 229215,
        "project": 229291,
        "task": 0,
        "starttime": "08:00",
        "endtime": "16:00",
        "work_hours": "8:00",
        "description": "description for worktime"
    }
}

example if row is not found

status: 404

  {
      "error": "not_found",
      "error_msg": "row not found with this id"
  }