TodoApi Resource

GET /api/v1/todo

Request Parameters
name type description constraints
filter_partnername query  
limit query int
startIndex query int
userid query  
Response Body
media type data type description
application/json TodoEntryList (JSON)
application/xml;charset=UTF-8 object

Example

Request
GET /api/v1/todo
Content-Type: */*
Accept: application/json

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{
  "entries" : [ {
    "type" : "NOTINITIALIZED",
    "cnr" : "...",
    "partnerName" : "...",
    "title" : "...",
    "dueDateMs" : 12345,
    "comment" : "...",
    "details" : {
      "entries" : [ { }, { } ],
      "rowCount" : 12345
    },
    "manufacturingPlace" : "...",
    "startDateMs" : 12345,
    "orderCnr" : "...",
    "documents" : {
      "rowCount" : 12345,
      "entries" : [ { }, { } ]
    },
    "formattedDeliveryAddress" : "...",
    "id" : 12345
  }, {
    "type" : "PROJECT",
    "cnr" : "...",
    "partnerName" : "...",
    "title" : "...",
    "dueDateMs" : 12345,
    "comment" : "...",
    "details" : {
      "entries" : [ { }, { } ],
      "rowCount" : 12345
    },
    "manufacturingPlace" : "...",
    "startDateMs" : 12345,
    "orderCnr" : "...",
    "documents" : {
      "rowCount" : 12345,
      "entries" : [ { }, { } ]
    },
    "formattedDeliveryAddress" : "...",
    "id" : 12345
  } ],
  "rowCount" : 12345,
  "serverId" : 12345,
  "barcodeLength" : 12345,
  "barcodeLengthOrderRelated" : 12345,
  "hvmaEnums" : [ "Fertigung", "Fertigung" ],
  "hvmaParams" : [ {
    "category" : "...",
    "value" : "...",
    "cnr" : "..."
  }, {
    "category" : "...",
    "value" : "...",
    "cnr" : "..."
  } ],
  "judgeEnums" : [ "PrintMonthlyReport", "PrintMonthlyReport" ]
}