Get list of available timsheet orders

GET /api-v1/my-timesheet/order

Headers

Query parameters

Responses

GET /api-v1/my-timesheet/order
curl \
 -X GET http://wyzio.app/api-v1/my-timesheet/order \
 -H "TARGET-ORGANIZATION-ID: 42" \
 -H "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "clientContactId": 42,
    "clientId": 42,
    "id": 42,
    "name": "string",
    "orderId": "string",
    "tasks": [
      {
        "children": [
          {}
        ],
        "id": 42,
        "name": "string",
        "parentId": 42,
        "position": 42,
        "rate": 42.0
      }
    ]
  }
]