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