Download OpenAPI specification:Download
timesheet.io provides a REST API that can be accessed directly from another web application or from within a Javascript single page application. The API can be used from any programming language.
This API should be used if you want to create new data in Timesheet or extract data from Timesheet.
Please email support@timesheet.io if you have questions or need help while using the API.
timesheet.io uses the OAuth 2.0 protocol for authentication and authorization. Oauth2 allows authorization without the external application getting the user's email address or password. Instead, the external application gets a token that authorizes access to the user's account. The user can revoke the token for one application without affecting access by any other application.
An external application must be registered with timesheet.io before it can use Oauth2 to authenticate users. A registered application can be used by all users of timesheet.io, not just the users of the account of the person registering the application. However, registered applications are not discoverable—simply registering your application does not make it visible to any other timesheet.io users.
Once an application is registered you can use the client_id
, client_secret
and redirect_url
in the authorization flow.
To authorize an external application to authenticate as a user, the application uses browser redirects to send the user to timesheet.io.
The user should be redirected in their browser to the Ouath2 authorize URL, passing the application specific parameters:
GET https://api.timesheet.io/oauth2/auth
access_token
. Using a value of code
will use the authorization code flow.Once the user authorizes the application their browser will be redirected back to the redirect_uri
.
timesheet.io will include a parameter in the URL named code
which must be exchanged for the access token by making another request to timesheet.io in the next step.
The application exchanges the code from the previous step for an access token. In this step the application uses its secret which provides an additional level of security since timesheet.io can be sure that it is an authorized application that is making the request on behalf of the user.
POST https://api.timesheet.io/oauth2/token
authorization_code
.The response to this POST will be a JSON string containing the access token and refresh token that can then be used to access the API.
The Client Credentials grant is used when applications request an access token to access their own resources, not on behalf of a user.
The application uses its secret to request an access token.
POST https://api.timesheet.io/oauth2/token
client_credentials
.The response to this POST will be a JSON string containing the access token and refresh token that can then be used to access the API.
When you're making calls to the API, there'll be a lot of results to return. For that reason, we paginate the results to make sure responses are easier to handle. We recommend you to set the limit
parameter in every request to ensure you know how many results per page you'll get.
The default limit
is 100 items per page. You can paginate through the results with the page
parameter, starting with 1
.
If you set the limit
to 10
and page
to 1
you will get the results from 1-10
. If you set the limit
to 10
and page
to 2
, you'll get the results from 11-20
.
List webhooks.
sort | string |
order | string |
page | integer <int32> |
limit | integer <int32> |
{- "items": [
- {
- "id": "string",
- "target": "string",
- "event": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
{- "target": "string",
- "event": "string"
}
{- "id": "string",
- "target": "string",
- "event": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0
}
Update webhook by id.
id required | string |
target | string |
event | string |
deleted | boolean |
{- "target": "string",
- "event": "string",
- "deleted": true
}
{- "id": "string",
- "target": "string",
- "event": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0
}
Search webhooks by the given parameters.
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
event | string |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "event": "string",
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "target": "string",
- "event": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
{- "expires": 0,
- "permission": 0,
- "status": 0,
- "plan": 0,
- "members": 0,
- "email": "string",
- "emailInvoice": "string",
- "paymentOption": "string",
- "imageUrl": "string",
- "business": "string",
- "taxId": "string",
- "firstname": "string",
- "lastname": "string",
- "firstnameInvoice": "string",
- "lastnameInvoice": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "referrer": "string",
- "includeTaxForBusiness": true,
- "newsletter": true,
- "gdprConsent": true,
- "invited": true,
- "activatedTeams": true,
- "activated": true,
- "cancellationOffer": true,
- "needsSetup": true,
- "user": "string",
- "lastUpdate": 0,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "initials": "string",
- "active": true,
- "displayName": "string",
- "currency": "string",
- "valid": true,
- "stripePayment": true,
- "invoiceLastname": "string",
- "licenseHolder": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "invoiceFirstname": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "validProfile": true,
- "invoiceEmail": "string",
- "invoicePayment": true,
- "licenseQuantity": 0,
- "expired": true,
- "member": true,
- "trial": true,
- "basic": true,
- "admin": true,
- "inactive": true,
- "yearly": true,
- "monthly": true,
- "plus": true,
- "pro": true,
- "product": "string",
- "uk": true,
- "at": true,
- "eu": true
}
Updates the profile of the current user.
firstname | string |
lastname | string |
string | |
emailInvoice | string |
imageUrl | string |
newsletter | boolean |
{- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "emailInvoice": "string",
- "imageUrl": "string",
- "newsletter": true
}
{- "expires": 0,
- "permission": 0,
- "status": 0,
- "plan": 0,
- "members": 0,
- "email": "string",
- "emailInvoice": "string",
- "paymentOption": "string",
- "imageUrl": "string",
- "business": "string",
- "taxId": "string",
- "firstname": "string",
- "lastname": "string",
- "firstnameInvoice": "string",
- "lastnameInvoice": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "referrer": "string",
- "includeTaxForBusiness": true,
- "newsletter": true,
- "gdprConsent": true,
- "invited": true,
- "activatedTeams": true,
- "activated": true,
- "cancellationOffer": true,
- "needsSetup": true,
- "user": "string",
- "lastUpdate": 0,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "initials": "string",
- "active": true,
- "displayName": "string",
- "currency": "string",
- "valid": true,
- "stripePayment": true,
- "invoiceLastname": "string",
- "licenseHolder": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "invoiceFirstname": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "validProfile": true,
- "invoiceEmail": "string",
- "invoicePayment": true,
- "licenseQuantity": 0,
- "expired": true,
- "member": true,
- "trial": true,
- "basic": true,
- "admin": true,
- "inactive": true,
- "yearly": true,
- "monthly": true,
- "plus": true,
- "pro": true,
- "product": "string",
- "uk": true,
- "at": true,
- "eu": true
}
{- "theme": "string",
- "timezone": "string",
- "language": "string",
- "currency": "string",
- "distance": "string",
- "dateFormat": "string",
- "timeFormat": "string",
- "durationFormat": "string",
- "csvSeparator": "string",
- "slotDuration": 0,
- "snapDuration": 0,
- "firstDay": 0,
- "defaultTaskDuration": 0,
- "defaultBreakDuration": 0,
- "entriesPerPage": 0,
- "timerRounding": 0,
- "timerRoundingType": 0,
- "timerEditView": true,
- "pauseRounding": 0,
- "pauseRoundingType": 0,
- "pauseEditView": true,
- "showRelatives": true,
- "weeklySummary": true,
- "monthlySummary": true,
- "autofillProjectSelection": true,
- "lastUpdate": 0
}
Update settings of current user.
theme | string |
timezone | string |
language | string |
currency | string |
distance | string |
dateFormat | string |
timeFormat | string |
durationFormat | string |
csvSeparator | string |
slotDuration | integer <int32> |
snapDuration | integer <int32> |
firstDay | integer <int32> |
defaultTaskDuration | integer <int32> |
defaultBreakDuration | integer <int32> |
entriesPerPage | integer <int32> |
timerRounding | integer <int32> |
timerRoundingType | integer <int32> |
timerEditView | boolean |
pauseRounding | integer <int32> |
pauseRoundingType | integer <int32> |
pauseEditView | boolean |
showRelatives | boolean |
weeklySummary | boolean |
monthlySummary | boolean |
autofillProjectSelection | boolean |
lastUpdate | integer <int64> |
{- "theme": "string",
- "timezone": "string",
- "language": "string",
- "currency": "string",
- "distance": "string",
- "dateFormat": "string",
- "timeFormat": "string",
- "durationFormat": "string",
- "csvSeparator": "string",
- "slotDuration": 0,
- "snapDuration": 0,
- "firstDay": 0,
- "defaultTaskDuration": 0,
- "defaultBreakDuration": 0,
- "entriesPerPage": 0,
- "timerRounding": 0,
- "timerRoundingType": 0,
- "timerEditView": true,
- "pauseRounding": 0,
- "pauseRoundingType": 0,
- "pauseEditView": true,
- "showRelatives": true,
- "weeklySummary": true,
- "monthlySummary": true,
- "autofillProjectSelection": true,
- "lastUpdate": 0
}
{- "theme": "string",
- "timezone": "string",
- "language": "string",
- "currency": "string",
- "distance": "string",
- "dateFormat": "string",
- "timeFormat": "string",
- "durationFormat": "string",
- "csvSeparator": "string",
- "slotDuration": 0,
- "snapDuration": 0,
- "firstDay": 0,
- "defaultTaskDuration": 0,
- "defaultBreakDuration": 0,
- "entriesPerPage": 0,
- "timerRounding": 0,
- "timerRoundingType": 0,
- "timerEditView": true,
- "pauseRounding": 0,
- "pauseRoundingType": 0,
- "pauseEditView": true,
- "showRelatives": true,
- "weeklySummary": true,
- "monthlySummary": true,
- "autofillProjectSelection": true,
- "lastUpdate": 0
}
{- "status": "string",
- "user": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "pause": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "stopped": true,
- "running": true,
- "paused": true
}
{- "startDateTime": "string",
- "valid": true
}
{- "status": "string",
- "user": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "pause": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "stopped": true,
- "running": true,
- "paused": true
}
{- "endDateTime": "string",
- "valid": true
}
{- "status": "string",
- "user": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "pause": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "stopped": true,
- "running": true,
- "paused": true
}
Starts the timer for the given project id.
projectId | string |
startDateTime | string |
valid | boolean |
{- "projectId": "string",
- "startDateTime": "string",
- "valid": true
}
{- "status": "string",
- "user": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "pause": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "stopped": true,
- "running": true,
- "paused": true
}
{- "endDateTime": "string",
- "valid": true
}
{- "status": "string",
- "user": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "pause": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "stopped": true,
- "running": true,
- "paused": true
}
Updates the timer
startDateTime | string |
description | string |
location | string |
locationEnd | string |
feeling | integer <int32> |
typeId | integer <int32> |
paid | boolean |
billed | boolean |
billable | boolean |
phoneNumber | string |
distance | number <double> |
{- "startDateTime": "string",
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0
}
{- "status": "string",
- "user": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "pause": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "stopped": true,
- "running": true,
- "paused": true
}
Activate team feature with given team name.
teamName required | string |
{- "expires": 0,
- "permission": 0,
- "status": 0,
- "plan": 0,
- "members": 0,
- "email": "string",
- "emailInvoice": "string",
- "paymentOption": "string",
- "imageUrl": "string",
- "business": "string",
- "taxId": "string",
- "firstname": "string",
- "lastname": "string",
- "firstnameInvoice": "string",
- "lastnameInvoice": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "referrer": "string",
- "includeTaxForBusiness": true,
- "newsletter": true,
- "gdprConsent": true,
- "invited": true,
- "activatedTeams": true,
- "activated": true,
- "cancellationOffer": true,
- "needsSetup": true,
- "user": "string",
- "lastUpdate": 0,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "initials": "string",
- "active": true,
- "displayName": "string",
- "currency": "string",
- "valid": true,
- "stripePayment": true,
- "invoiceLastname": "string",
- "licenseHolder": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "invoiceFirstname": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "validProfile": true,
- "invoiceEmail": "string",
- "invoicePayment": true,
- "licenseQuantity": 0,
- "expired": true,
- "member": true,
- "trial": true,
- "basic": true,
- "admin": true,
- "inactive": true,
- "yearly": true,
- "monthly": true,
- "plus": true,
- "pro": true,
- "product": "string",
- "uk": true,
- "at": true,
- "eu": true
}
Search teams by given parameters.
userId required | string |
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
statistics | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "statistics": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
List teams.
statistics | boolean |
sort | string |
order | string |
page | integer <int32> |
limit | integer <int32> |
{- "items": [
- {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Create a new team.
name | string |
description | string |
image | string |
color | integer <int32> |
{- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0
}
{- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
{- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "lastUpdate": 0,
- "created": 0,
- "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "salaryActivated": true,
- "salary": 0
}
], - "initials": "string",
- "displayName": "string"
}
Update team member by id.
teamId required | string |
id required | string |
firstname | string |
lastname | string |
employeeId | string |
activate | boolean |
object (TeamPermissionDto) | |
Array of objects (TeamMemberProjectRegistrationDto) |
{- "firstname": "string",
- "lastname": "string",
- "employeeId": "string",
- "activate": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "salaryActivated": true,
- "salary": 0
}
]
}
{- "firstname": "string",
- "lastname": "string",
- "employeeId": "string",
- "activate": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "salaryActivated": true,
- "salary": 0
}
]
}
Get colleagues of the current user by the given parameters.
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
teamId | string |
projectId | string |
withoutMe | boolean |
lastActivity | boolean |
deleted | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "teamId": "string",
- "projectId": "string",
- "withoutMe": true,
- "lastActivity": true,
- "deleted": true,
- "offset": 0
}
[- {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
]
{- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
Update team by id.
id required | string |
name | string |
description | string |
image | string |
color | integer <int32> |
deleted | boolean |
{- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "deleted": true
}
{- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
List team members by given parameters.
teamId required | string |
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
teamId | string |
projectId | string |
withoutMe | boolean |
lastActivity | boolean |
deleted | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "teamId": "string",
- "projectId": "string",
- "withoutMe": true,
- "lastActivity": true,
- "deleted": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "lastUpdate": 0,
- "created": 0,
- "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "salaryActivated": true,
- "salary": 0
}
], - "initials": "string",
- "displayName": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Get team members by team id.
teamId required | string |
string | |
firstname | string |
lastname | string |
employeeId | string |
object (TeamPermissionDto) | |
Array of objects (TeamMemberProjectRegistrationDto) |
{- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "employeeId": "string",
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "salaryActivated": true,
- "salary": 0
}
]
}
{- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "employeeId": "string",
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "salaryActivated": true,
- "salary": 0
}
]
}
Search teams by given parameters.
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
statistics | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "statistics": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Search projects by given parameters.
userId required | string |
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
teamId | string |
status | string |
statistics | boolean |
teamIds | Array of strings |
projectIds | Array of strings |
taskStartDate | string |
taskEndDate | string |
taskRateId | string |
taskType | string |
taskFilter | string |
taskUserIds | Array of strings |
empty | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "teamId": "string",
- "status": "string",
- "statistics": true,
- "teamIds": [
- "string"
], - "projectIds": [
- "string"
], - "taskStartDate": "string",
- "taskEndDate": "string",
- "taskRateId": "string",
- "taskType": "string",
- "taskFilter": "string",
- "taskUserIds": [
- "string"
], - "empty": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
List projects.
teamId | string |
status | string |
statistics | boolean |
sort | string |
order | string |
page | integer <int32> |
limit | integer <int32> |
{- "items": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Create a new project.
title | string |
description | string |
employer | string |
office | string |
color | integer <int32> |
taskDefaultBillable | boolean |
taskDefaultRateId | string |
archived | boolean |
salary | number <double> |
teamId | string |
{- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "taskDefaultRateId": "string",
- "archived": true,
- "salary": 0,
- "teamId": "string"
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}
Update project by id.
id required | string |
title | string |
description | string |
employer | string |
office | string |
color | integer <int32> |
taskDefaultBillable | boolean |
taskDefaultRateId | string |
archived | boolean |
salary | number <double> |
deleted | boolean |
{- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "taskDefaultRateId": "string",
- "archived": true,
- "salary": 0,
- "deleted": true
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}
[- {
- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "imageUrl": "string",
- "salaryActivated": true,
- "salary": 0,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "lastUpdate": 0,
- "created": 0,
- "displayName": "string"
}
]
Update project member registrations.
projectId required | string |
id | string |
role | string |
user | string |
salaryActivated | boolean |
salary | number <double> |
[- {
- "id": "string",
- "role": "string",
- "user": "string",
- "salaryActivated": true,
- "salary": 0
}
]
Search projects by given parameters.
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
teamId | string |
status | string |
statistics | boolean |
teamIds | Array of strings |
projectIds | Array of strings |
taskStartDate | string |
taskEndDate | string |
taskRateId | string |
taskType | string |
taskFilter | string |
taskUserIds | Array of strings |
empty | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "teamId": "string",
- "status": "string",
- "statistics": true,
- "teamIds": [
- "string"
], - "projectIds": [
- "string"
], - "taskStartDate": "string",
- "taskEndDate": "string",
- "taskRateId": "string",
- "taskType": "string",
- "taskFilter": "string",
- "taskUserIds": [
- "string"
], - "empty": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Search tags by given parameters.
userId required | string |
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
teamId | string |
projectId | string |
statistics | boolean |
empty | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "teamId": "string",
- "projectId": "string",
- "statistics": true,
- "empty": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
List tags.
teamId | string |
projectId | string |
statistics | boolean |
sort | string |
order | string |
page | integer <int32> |
limit | integer <int32> |
[- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
]
Create a new tag.
name | string |
color | integer <int32> |
teamId | string |
{- "name": "string",
- "color": 0,
- "teamId": "string"
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
Update tag by id.
id required | string |
name | string |
color | integer <int32> |
deleted | boolean |
{- "name": "string",
- "color": 0,
- "deleted": true
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
Search tags by given parameters.
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
teamId | string |
projectId | string |
statistics | boolean |
empty | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "teamId": "string",
- "projectId": "string",
- "statistics": true,
- "empty": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Search rates by given parameters.
userId required | string |
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
teamId | string |
projectId | string |
empty | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "teamId": "string",
- "projectId": "string",
- "empty": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
List rates.
teamId | string |
projectId | string |
sort | string |
order | string |
page | integer <int32> |
limit | integer <int32> |
{- "items": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Create a new rate.
title | string |
factor | number <double> |
extra | number <double> |
enabled | boolean |
teamId | string |
{- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "teamId": "string"
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}
Update rate by id.
id required | string |
title | string |
factor | number <double> |
extra | number <double> |
enabled | boolean |
deleted | boolean |
{- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "deleted": true
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}
Search rates by given parameters.
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
teamId | string |
projectId | string |
empty | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "teamId": "string",
- "projectId": "string",
- "empty": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
List tasks.
sort | string |
order | string |
page | integer <int32> |
limit | integer <int32> |
{- "items": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "startDate": "string",
- "endDate": "string",
- "teamId": "string",
- "projectId": "string",
- "todoId": "string",
- "rateId": "string",
- "documentId": "string",
- "type": "string",
- "filter": "string",
- "teamIds": [
- "string"
], - "projectIds": [
- "string"
], - "tagIds": [
- "string"
], - "taskIds": [
- "string"
], - "userIds": [
- "string"
], - "feelings": [
- 0
], - "populatePauses": true,
- "populateExpenses": true,
- "populateNotes": true,
- "populateTags": true,
- "performance": true,
- "offset": 0
}, - "taskStatistic": {
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "currentPerformance": {
- "startDateTime": "string",
- "endDateTime": "string",
- "duration": 0,
- "salaryTotal": 0
}, - "lastPerformance": {
- "startDateTime": "string",
- "endDateTime": "string",
- "duration": 0,
- "salaryTotal": 0
}
}
Create a new task.
projectId | string |
description | string |
location | string |
locationEnd | string |
startDateTime | string |
endDateTime | string |
feeling | integer <int32> |
typeId | integer <int32> |
paid | boolean |
billed | boolean |
billable | boolean |
phoneNumber | string |
distance | number <double> |
rateId | string |
todoId | string |
signature | string |
userId | string |
tagIds | Array of strings |
{- "projectId": "string",
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "rateId": "string",
- "todoId": "string",
- "signature": "string",
- "userId": "string",
- "tagIds": [
- "string"
]
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}
Update task by id.
id required | string |
projectId | string |
description | string |
location | string |
locationEnd | string |
startDateTime | string |
endDateTime | string |
feeling | integer <int32> |
typeId | integer <int32> |
paid | boolean |
billed | boolean |
billable | boolean |
phoneNumber | string |
distance | number <double> |
rateId | string |
todoId | string |
signature | string |
deleted | boolean |
tagIds | Array of strings |
{- "projectId": "string",
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "rateId": "string",
- "todoId": "string",
- "signature": "string",
- "deleted": true,
- "tagIds": [
- "string"
]
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}
Search tasks by given parameters.
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
startDate | string |
endDate | string |
teamId | string |
projectId | string |
todoId | string |
rateId | string |
documentId | string |
type | string |
filter | string |
teamIds | Array of strings |
projectIds | Array of strings |
tagIds | Array of strings |
taskIds | Array of strings |
userIds | Array of strings |
feelings | Array of integers <int32> [ items <int32 > ] |
populatePauses | boolean |
populateExpenses | boolean |
populateNotes | boolean |
populateTags | boolean |
performance | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "startDate": "string",
- "endDate": "string",
- "teamId": "string",
- "projectId": "string",
- "todoId": "string",
- "rateId": "string",
- "documentId": "string",
- "type": "string",
- "filter": "string",
- "teamIds": [
- "string"
], - "projectIds": [
- "string"
], - "tagIds": [
- "string"
], - "taskIds": [
- "string"
], - "userIds": [
- "string"
], - "feelings": [
- 0
], - "populatePauses": true,
- "populateExpenses": true,
- "populateNotes": true,
- "populateTags": true,
- "performance": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "startDate": "string",
- "endDate": "string",
- "teamId": "string",
- "projectId": "string",
- "todoId": "string",
- "rateId": "string",
- "documentId": "string",
- "type": "string",
- "filter": "string",
- "teamIds": [
- "string"
], - "projectIds": [
- "string"
], - "tagIds": [
- "string"
], - "taskIds": [
- "string"
], - "userIds": [
- "string"
], - "feelings": [
- 0
], - "populatePauses": true,
- "populateExpenses": true,
- "populateNotes": true,
- "populateTags": true,
- "performance": true,
- "offset": 0
}, - "taskStatistic": {
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "currentPerformance": {
- "startDateTime": "string",
- "endDateTime": "string",
- "duration": 0,
- "salaryTotal": 0
}, - "lastPerformance": {
- "startDateTime": "string",
- "endDateTime": "string",
- "duration": 0,
- "salaryTotal": 0
}
}
Update status of a task.
id | string |
status | integer <int32> |
notBillable | boolean |
notBilled | boolean |
paid | boolean |
billed | boolean |
unpaid | boolean |
{- "id": "string",
- "status": 0,
- "notBillable": true,
- "notBilled": true,
- "paid": true,
- "billed": true,
- "unpaid": true
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}
Update start and end times of a task.
id | string |
start | string |
end | string |
{- "id": "string",
- "start": "string",
- "end": "string"
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}
List pauses.
taskId | string |
sort | string |
order | string |
page | integer <int32> |
limit | integer <int32> |
{- "items": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Create a new pause.
description | string |
startDateTime | string |
endDateTime | string |
taskId | string |
{- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "taskId": "string"
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
Update pause by id.
id required | string |
description | string |
startDateTime | string |
endDateTime | string |
deleted | boolean |
{- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "deleted": true
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
Search pauses by given parameters.
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
taskId | string |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "taskId": "string",
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
List expenses.
taskId | string |
filter | string |
sort | string |
order | string |
page | integer <int32> |
limit | integer <int32> |
{- "items": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- { }
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Create a new expense.
description | string |
dateTime | string |
amount | number <double> |
refunded | boolean |
fileUri | string |
fileName | string |
taskId | string |
{- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "taskId": "string"
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- { }
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- { }
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
Update expense by id.
id required | string |
description | string |
dateTime | string |
amount | number <double> |
refunded | boolean |
deleted | boolean |
fileUri | string |
fileName | string |
{- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "deleted": true,
- "fileUri": "string",
- "fileName": "string"
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- { }
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
Search expenses by given parameters.
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
startDate | string |
endDate | string |
taskId | string |
documentId | string |
filter | string |
projectIds | Array of strings |
taskIds | Array of strings |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "startDate": "string",
- "endDate": "string",
- "taskId": "string",
- "documentId": "string",
- "filter": "string",
- "projectIds": [
- "string"
], - "taskIds": [
- "string"
], - "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- { }
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
{- "id": "string",
- "refunded": true
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- { }
], - "notes": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
List notes.
taskId | string |
sort | string |
order | string |
page | integer <int32> |
limit | integer <int32> |
{- "items": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Create a new note.
text | string |
dateTime | string |
uri | string |
driveId | string |
taskId | string |
{- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "taskId": "string"
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
Update note by id.
id required | string |
text | string |
dateTime | string |
uri | string |
driveId | string |
deleted | boolean |
{- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "deleted": true
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
Search notes by given parameters.
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
startDate | string |
endDate | string |
taskId | string |
documentId | string |
taskIds | Array of strings |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "startDate": "string",
- "endDate": "string",
- "taskId": "string",
- "documentId": "string",
- "taskIds": [
- "string"
], - "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "text": "string",
- "dateTime": "string",
- "uri": "string",
- "driveId": "string",
- "task": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "location": "string",
- "locationEnd": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "feeling": 0,
- "typeId": 0,
- "paid": true,
- "billed": true,
- "billable": true,
- "phoneNumber": "string",
- "distance": 0,
- "signature": "string",
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "todo": {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "project": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salary": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "titleAndClient": "string"
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expenses": 0,
- "expensesPaid": 0,
- "mileage": 0
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0,
- "extra": 0,
- "enabled": true,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "team": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "managerOrOwner": true,
- "member": true,
- "owner": true,
- "manager": true
}, - "projects": 0,
- "members": 0
}, - "totalTime": 0
}
], - "pauses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "running": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0,
- "salaryBreak": 0,
- "expensesTotal": 0,
- "expensesPaid": 0,
- "mileage": 0,
- "notesTotal": 0
}, - "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": "string",
- "projectTitle": "string",
- "projectColor": 0,
- "taskId": "string",
- "startDateTime": "string",
- "endDateTime": "string",
- "location": "string",
- "running": true
}, - "initials": "string",
- "displayName": "string"
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}