Download OpenAPI specification:
The Timesheet REST API provides comprehensive functionality for creating, retrieving, updating, and deleting time tracking data.
This API is ideal for integrating Timesheet with:
All API requests require authentication using either:
timesheet.io implements the OAuth 2.0 protocol for secure authentication and authorization. This industry-standard protocol enables third-party applications to obtain limited access to user accounts without exposing sensitive credentials.
timesheet.io supports the following OAuth 2.0 grant types:
Authorization: Bearer {token}
Register your application at timesheet.io Developer Portal
After registration, you'll receive:
GET https://api.timesheet.io/oauth2/auth
Redirect users to our authorization endpoint:
GET https://api.timesheet.io/oauth2/auth
Parameter | Description |
---|---|
client_id | Your application's client ID |
redirect_uri | Must match one of your registered redirect URLs |
response_type | Use 'code' for authorization code flow |
After user consent, we redirect to your redirect_uri with:
Exchange the authorization code for tokens:
POST https://api.timesheet.io/oauth2/token
Content-Type: application/x-www-form-urlencoded
Parameter | Description |
---|---|
client_id | Your application's client ID |
client_secret | Your application's secret key |
grant_type | Use 'authorization_code' |
code | The authorization code received |
redirect_uri | Must match the original request |
{
"access_token": "eyJ0eXAi...",
"token_type": "Bearer",
"expires_in": 86400,
"refresh_token": "def502..."
}
For server-to-server authentication without user context:
POST https://api.timesheet.io/oauth2/token
Content-Type: application/x-www-form-urlencoded
Parameter | Description |
---|---|
client_id | Your application's client ID |
client_secret | Your application's secret key |
grant_type | Use 'client_credentials' |
timesheet.io supports API Key authentication as an alternative to OAuth 2.0 for programmatic access to your timesheet data. API Keys provide a simpler authentication method for server-to-server integrations and automated scripts.
Authorization: ApiKey {api_key}
Navigate to the Developer section in your Timesheet account at https://my.timesheet.io/development
Click "Create API Key" and provide:
After creation, your API Key will be displayed only once:
ts_{prefix}.{secret}
(e.g., ts_1a2b3c4d.9f8e7d6c5b4a3f2e1d0c9b8a7f6e5d4c3b2a1f
)Include your API Key in the Authorization header with the ApiKey scheme:
curl -H "Authorization: ApiKey ts_1a2b3c4d.9f8e7d6c5b4a3f2e1d0c9b8a7f6e5d4c3b2a1f" \
https://api.timesheet.io/v1/projects
const apiKey = 'ts_1a2b3c4d.9f8e7d6c5b4a3f2e1d0c9b8a7f6e5d4c3b2a1f';
fetch('https://api.timesheet.io/v1/tasks', {
headers: {
'Authorization': `ApiKey ${apiKey}`,
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => console.log(data));
import requests
api_key = 'ts_1a2b3c4d.9f8e7d6c5b4a3f2e1d0c9b8a7f6e5d4c3b2a1f'
headers = {
'Authorization': f'ApiKey {api_key}',
'Content-Type': 'application/json'
}
response = requests.get('https://api.timesheet.io/v1/timer', headers=headers)
data = response.json()
View all your API Keys in the developer settings to monitor usage and manage access.
Immediately revoke API Keys that are:
API Key authentication errors return standard HTTP status codes:
401 Unauthorized
: Invalid or expired API Key403 Forbidden
: API Key lacks required permissions429 Too Many Requests
: Rate limit exceededWhen 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.
Parameter | Description |
---|---|
limit |
Controls how many results per page (1-100). Default is 100. |
page |
Specifies which page of results to retrieve (1-based). Default is 1. |
We recommend you to set the limit
parameter in every request to ensure you know how many results per page you'll get.
limit
to 10
and page
to 1
you will get the results from 1-10
.limit
to 10
and page
to 2
, you'll get the results from 11-20
.All paginated responses include metadata about the total count, current page, and pagination settings:
{
"items": [...],
"count": 42,
"page": 1,
"limit": 10,
"sort": "created",
"order": "desc"
}
Webhooks allow you to receive real-time notifications about events in your Timesheet account. Instead of constantly polling our API, you can register a webhook URL that we'll call whenever specific events occur.
The API supports notifications for various events including:
timer.start
- When a timer is startedtimer.stop
- When a timer is stoppedtask.create
- When a new task is createdtask.update
- When a task is updatedproject.create
- When a new project is createdTo create a webhook, provide a target URL and the event type you want to monitor. The target URL must be a valid HTTPS URL that responds to our verification request.
Webhook payloads are sent as JSON in the request body. Each payload includes:
event
- The event type that triggered the webhooktimestamp
- When the event occurreddata
- The full resource object related to the eventRetrieves a paginated list of webhooks belonging to the authenticated user. The list can be sorted and ordered using the provided parameters.
sort | string Default: "created" Enum: "created" "lastUpdate" "target" "event" Field to sort by |
order | string Default: "desc" Enum: "asc" "desc" Sort direction |
page | integer <int64> >= 1 Default: 1 Example: page=1 Page number (1-based pagination) |
limit | integer <int64> [ 1 .. 100 ] Default: 20 Example: limit=20 Number of items per page |
{- "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
}
}
Creates a new webhook for the authenticated user. The webhook will send notifications to the specified target URL when the specified event occurs. The webhook URL must be a valid HTTP or HTTPS URL.
Webhook creation data containing target URL and event type
target | string |
event | string |
{- "target": "string",
- "event": "string"
}
{- "id": "string",
- "target": "string",
- "event": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0
}
Retrieves a specific webhook by its unique identifier. Only webhooks owned by the authenticated user can be retrieved.
id required | string Example: wh-123456789 Unique identifier of the webhook |
{- "id": "string",
- "target": "string",
- "event": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0
}
Updates an existing webhook identified by its unique ID. Only webhooks owned by the authenticated user can be updated. This endpoint allows changing the target URL and event type.
id required | string Example: wh-123456789 Unique identifier of the webhook to update |
Webhook update data containing the new target URL and/or event type
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
}
Permanently deletes a webhook identified by its unique ID. Only webhooks owned by the authenticated user can be deleted. This operation cannot be undone.
id required | string Example: wh-123456789 Unique identifier of the webhook to delete |
Searches for webhooks matching the specified criteria. This endpoint provides more advanced filtering options than the list endpoint, such as filtering by event type. Only webhooks owned by the authenticated user will be included in results.
Search parameters including pagination, sorting, and filtering criteria
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
}
}
The Profile API allows you to manage user profiles, including personal information, preferences, and account settings.
Profiles can be associated with multiple organizations and teams. The APIs provide ways to view and manage these relationships.
The API provides endpoints specifically for data privacy compliance, allowing users to exercise their right to delete personal data or their entire account.
Retrieves the profile information of the authenticated user. This is typically called upon login to get user details and subscription status.
referrer | string The referrer URL where the user came from, used for analytics |
{- "permission": 0,
- "email": "string",
- "imageUrl": "string",
- "firstname": "string",
- "lastname": "string",
- "language": "string",
- "countryIso": "string",
- "country": "string",
- "ipAddress": "string",
- "referrer": "string",
- "newsletter": true,
- "gdprConsent": true,
- "invited": true,
- "activatedTeams": true,
- "activated": true,
- "needsSetup": true,
- "user": "string",
- "lastUpdate": 0,
- "subscriptionId": "string",
- "expires": 0,
- "status": 0,
- "valid": true,
- "expired": true,
- "product": "string",
- "trial": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "member": true,
- "personalSubscriptionActive": true,
- "organizationSubscriptionActive": true,
- "basic": true,
- "pro": true,
- "plus": true,
- "validProfile": true,
- "validAndActivated": true,
- "admin": true,
- "displayName": "string",
- "initials": "string",
- "createdAt": "2019-08-24T14:15:22Z"
}
Updates the profile information of the authenticated user. This can include personal details, preferences, and settings.
The updated profile information
firstname | string |
lastname | string |
string | |
imageUrl | string |
newsletter | boolean |
{- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "imageUrl": "string",
- "newsletter": true
}
{- "permission": 0,
- "email": "string",
- "imageUrl": "string",
- "firstname": "string",
- "lastname": "string",
- "language": "string",
- "countryIso": "string",
- "country": "string",
- "ipAddress": "string",
- "referrer": "string",
- "newsletter": true,
- "gdprConsent": true,
- "invited": true,
- "activatedTeams": true,
- "activated": true,
- "needsSetup": true,
- "user": "string",
- "lastUpdate": 0,
- "subscriptionId": "string",
- "expires": 0,
- "status": 0,
- "valid": true,
- "expired": true,
- "product": "string",
- "trial": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "member": true,
- "personalSubscriptionActive": true,
- "organizationSubscriptionActive": true,
- "basic": true,
- "pro": true,
- "plus": true,
- "validProfile": true,
- "validAndActivated": true,
- "admin": true,
- "displayName": "string",
- "initials": "string",
- "createdAt": "2019-08-24T14:15:22Z"
}
The Settings API lets users customize their Timesheet experience by managing preferences and defaults.
Setting | Description |
---|---|
theme |
UI theme preference (light/dark) |
timezone |
User's preferred timezone |
language |
Interface language |
currency |
Preferred currency for rates and amounts |
dateFormat |
How dates should be displayed |
timeFormat |
12h or 24h time format |
firstDay |
First day of week (0=Sunday, 1=Monday) |
Special settings control the timer behavior:
timerRounding
- Round timer times to nearest intervaltimerRoundingType
- How to round (up, down, nearest)pauseRounding
- Round pause times to nearest intervalRetrieves all settings for the currently authenticated user. Returns preferences like theme, timezone, language, and display formats.
{- "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
}
Updates settings for the currently authenticated user. This includes preferences like theme, timezone, language, currency, display formats, and timer behaviors.
Settings object containing user preferences to update
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
}
The Organization API handles the creation and management of organizational entities that represent businesses or departments. Organizations provide an overarching structure above teams for administrative and billing purposes.
Organizations include:
Organizations use a permission system:
The API provides endpoints to:
Organizations can contain multiple teams:
Adds a user to an organization with specified permissions. If the user already exists in the system, they will be added to the organization. If not, an invitation will be prepared. Requires admin permission in the organization. Permission flags control what actions the user can perform in the organization - 'admin' grants full control, 'invoicing' allows invoice management, and 'billing' allows access to billing information.
organizationId required | string Example: org-12345 Organization ID |
Member creation details including email, name, and permission flags
string | |
firstname | string |
lastname | string |
invoicing | boolean |
billing | boolean |
admin | boolean |
{- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "invoicing": true,
- "billing": true,
- "admin": true
}
{- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "imageUrl": "string",
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}, - "lastUpdate": 0,
- "created": 0,
- "displayName": "string",
- "initials": "string"
}
Retrieves detailed information about a specific organization by its ID. This admin-only endpoint allows system administrators to view any organization regardless of their membership. Contains additional system-level information not available in the standard endpoint.
id required | string Example: org-12345 Organization ID |
{- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}
Allows a system administrator to search all organizations in the system regardless of their membership. Supports advanced filtering and pagination. Similar to the standard search endpoint but with no permission restrictions and additional admin-only search criteria.
Admin search parameters including sort, order, pagination, and filters with additional admin-only fields
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Retrieves a paginated list of organizations accessible to the current user. The list includes organizations where the user has direct permissions or permissions through team membership. Results can be sorted and paginated.
sort | string Default: "permission" Enum: "alpha" "permission" "created" Example: sort=alpha Sort field |
order | string Default: "asc" Enum: "asc" "desc" Example: order=asc Sort order direction |
page required | integer <int64> >= 1 Default: 1 Example: page=1 Page number (1-based) |
limit required | integer <int64> [ 1 .. 100 ] Default: 20 Example: limit=20 Number of items per page |
{- "items": [
- {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Creates a new organization with the current user as the administrator. The user must be authorized to create organizations based on their account type and subscription. The organization will be initially created with the current user as the only member with admin permissions.
Organization details for creation including name and optional properties. Name is required.
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,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}
Retrieves detailed information about a specific organization by its ID. The user must have permissions to access the organization, either directly or through team membership. Returns a 401 if the organization doesn't exist or the user doesn't have access.
id required | string Example: org-12345 Organization ID |
{- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}
Updates an existing organization's details. Only users with administrator permissions in the organization can update it. Supports partial updates - only fields included in the request will be modified.
id required | string Example: org-12345 Organization ID |
Updated organization details. Only included fields will be updated.
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,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}
Soft deletes an organization by its ID. The organization will be marked as deleted but data will be preserved. Only organization administrators can perform this operation. Any associated permissions, subscriptions, and references from teams and documents will be handled appropriately.
id required | string Example: org-12345 Organization ID |
Retrieves details of a specific member's permissions within an organization. Includes user profile information and permission flags. The permission ID is unique to the organization-user relationship. Requires the user to be a member of the organization with appropriate permissions.
organizationId required | string Example: org-12345 Organization ID |
permissionId required | string Example: perm-67890 Permission ID (unique identifier for the user-organization relationship) |
{- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "imageUrl": "string",
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}, - "lastUpdate": 0,
- "created": 0,
- "displayName": "string",
- "initials": "string"
}
Updates a specific user's permission flags within an organization. Can modify admin, invoicing, and billing permission flags. Requires admin access in the organization. Cannot remove the last admin of an organization - at least one admin must remain.
organizationId required | string Example: org-12345 Organization ID |
permissionId required | string Example: perm-67890 Permission ID (unique identifier for the user-organization relationship) |
Updated permission flags (admin, invoicing, billing)
invoicing | boolean |
billing | boolean |
admin | boolean |
{- "invoicing": true,
- "billing": true,
- "admin": true
}
{- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "imageUrl": "string",
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}, - "lastUpdate": 0,
- "created": 0,
- "displayName": "string",
- "initials": "string"
}
Removes a user's membership/permission from an organization (soft delete). The user will lose access to the organization and its resources. Requires admin access in the organization. Cannot remove the last admin of an organization - at least one admin must remain.
organizationId required | string Example: org-12345 Organization ID |
permissionId required | string Example: perm-67890 Permission ID (unique identifier for the user-organization relationship) |
Retrieves a paginated list of all members (users) within a specific organization with their permission details. Supports filtering by status (active/deleted) and searching by name or email. The user must have permission to view the organization's members.
organizationId required | string Example: org-12345 Organization ID |
Member list parameters including sort, order, pagination, search, and status filters
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
deleted | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "deleted": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "imageUrl": "string",
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}, - "lastUpdate": 0,
- "created": 0,
- "displayName": "string",
- "initials": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Searches organizations accessible to the current user based on the provided parameters. Supports advanced filtering and pagination. Uses the same parameter structure as the list operation but allows more complex search criteria through the request body.
Search parameters including sort, order, pagination, and custom filters
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
The Team API enables managing teams and their members, crucial for collaborative time tracking and project management.
Each team can have multiple members with different permission levels:
Teams can be associated with organizations, which provide billing and administrative structure. A team must belong to an organization or to an individual user.
The API provides capabilities to:
Activates the team feature for the current user and creates a default team with the specified name. If team feature is already activated, only updates the user profile.
teamName required | string Example: My Team Name for the default team to be created |
{- "permission": 0,
- "email": "string",
- "imageUrl": "string",
- "firstname": "string",
- "lastname": "string",
- "language": "string",
- "countryIso": "string",
- "country": "string",
- "ipAddress": "string",
- "referrer": "string",
- "newsletter": true,
- "gdprConsent": true,
- "invited": true,
- "activatedTeams": true,
- "activated": true,
- "needsSetup": true,
- "user": "string",
- "lastUpdate": 0,
- "subscriptionId": "string",
- "expires": 0,
- "status": 0,
- "valid": true,
- "expired": true,
- "product": "string",
- "trial": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "member": true,
- "personalSubscriptionActive": true,
- "organizationSubscriptionActive": true,
- "basic": true,
- "pro": true,
- "plus": true,
- "validProfile": true,
- "validAndActivated": true,
- "admin": true,
- "displayName": "string",
- "initials": "string",
- "createdAt": "2019-08-24T14:15:22Z"
}
Retrieves a paginated list of teams accessible to the current user. Supports sorting and optional statistics.
statistics | boolean Default: false Include team statistics like project and member counts |
sort | string Default: "permission" Enum: "alpha" "permission" "created" Field to sort by |
order | string Default: "asc" Enum: "asc" "desc" Sort direction |
page | integer <int64> >= 1 Default: 1 Page number (1-based pagination) |
limit | integer <int64> [ 1 .. 100 ] Default: 20 Number of items per page |
{- "items": [
- {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "organizationId": "string",
- "statistics": true,
- "offset": 0
}
}
Creates a new team with the current user as owner. The team name must be unique for the user.
Team creation details including name, description, and other properties
organizationId | string |
name | string |
description | string |
image | string |
color | integer <int32> |
projectSalaryVisibility | integer <int32> |
{- "organizationId": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0
}
{- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
Retrieves detailed information about a specific team member by their unique identifier within a team.
teamId required | string Example: b0742508-7291-45e1-b32a-29f03edd55f9 Unique identifier of the team |
id required | string Example: 7a1c6e32-89f4-42d3-a5ea-e6c2120ec5c0 Unique identifier of the team member to retrieve |
{- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "lastUpdate": 0,
- "created": 0,
- "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "salaryActivated": true,
- "salary": 0.1
}
], - "displayName": "string",
- "initials": "string"
}
Updates an existing team member's information, including permission level. Only team owners can change permissions to owner level.
teamId required | string Example: b0742508-7291-45e1-b32a-29f03edd55f9 Unique identifier of the team |
id required | string Example: 7a1c6e32-89f4-42d3-a5ea-e6c2120ec5c0 Unique identifier of the team member to update |
Updated team member details including permission level
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",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "salaryActivated": true,
- "salary": 0.1
}
]
}
{- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "lastUpdate": 0,
- "created": 0,
- "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "salaryActivated": true,
- "salary": 0.1
}
], - "displayName": "string",
- "initials": "string"
}
Removes a member from a team. Team owners can remove any member, and managers can remove regular members.
teamId required | string Example: b0742508-7291-45e1-b32a-29f03edd55f9 Unique identifier of the team |
id required | string Example: 7a1c6e32-89f4-42d3-a5ea-e6c2120ec5c0 Unique identifier of the team member to remove |
Retrieves a list of colleagues (other team members) for the current user across all their teams, or filtered by a specific team. Used for user selection in UI components. Supports pagination and search.
Parameters for filtering colleagues by team, project, search terms, and pagination settings
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
organizationId | string |
status | string |
teamId | string |
projectId | string |
withoutMe | boolean |
withoutProjectMembers | boolean |
lastActivity | boolean |
deleted | boolean |
userIds | Array of strings |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "organizationId": "string",
- "status": "string",
- "teamId": "string",
- "projectId": "string",
- "withoutMe": true,
- "withoutProjectMembers": true,
- "lastActivity": true,
- "deleted": true,
- "userIds": [
- "string"
], - "offset": 0
}
{- "items": [
- {
- "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
}, - "displayName": "string",
- "initials": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "organizationId": "string",
- "status": "string",
- "teamId": "string",
- "projectId": "string",
- "withoutMe": true,
- "withoutProjectMembers": true,
- "lastActivity": true,
- "deleted": true,
- "userIds": [
- "string"
], - "offset": 0
}
}
Retrieves detailed information about a specific team by its unique identifier.
id required | string Example: b0742508-7291-45e1-b32a-29f03edd55f9 Unique identifier of the team to retrieve |
{- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
Updates an existing team's information. Only team owners can update team details.
id required | string Example: b0742508-7291-45e1-b32a-29f03edd55f9 Unique identifier of the team to update |
Updated team details
organizationId | string |
name | string |
description | string |
image | string |
color | integer <int32> |
projectSalaryVisibility | integer <int32> |
deleted | boolean |
{- "organizationId": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "deleted": true
}
{- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
Retrieves a paginated list of team members for a specific team. Supports filtering by status and search terms.
teamId required | string Example: b0742508-7291-45e1-b32a-29f03edd55f9 Unique identifier of the team |
Parameters for filtering, pagination, and sorting team members
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
organizationId | string |
status | string |
teamId | string |
projectId | string |
withoutMe | boolean |
withoutProjectMembers | boolean |
lastActivity | boolean |
deleted | boolean |
userIds | Array of strings |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "organizationId": "string",
- "status": "string",
- "teamId": "string",
- "projectId": "string",
- "withoutMe": true,
- "withoutProjectMembers": true,
- "lastActivity": true,
- "deleted": true,
- "userIds": [
- "string"
], - "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "lastUpdate": 0,
- "created": 0,
- "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "salaryActivated": true,
- "salary": 0.1
}
], - "displayName": "string",
- "initials": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Adds a new member to a team. Team owners and managers can add new members. Provides different levels of permissions: Member (1), Manager (2), Owner (3).
teamId required | string Example: b0742508-7291-45e1-b32a-29f03edd55f9 Unique identifier of the team to add a member to |
Team member details including user identifier and permission level
teamId | string |
string | |
firstname | string |
lastname | string |
employeeId | string |
object (TeamPermissionDto) | |
Array of objects (TeamMemberProjectRegistrationDto) |
{- "teamId": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "employeeId": "string",
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "salaryActivated": true,
- "salary": 0.1
}
]
}
{- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "lastUpdate": 0,
- "created": 0,
- "projectRegistrations": [
- {
- "projectId": "string",
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "salaryActivated": true,
- "salary": 0.1
}
], - "displayName": "string",
- "initials": "string"
}
Performs an advanced search for teams based on supplied parameters, with pagination and sorting options.
Search parameters including filters, pagination, and sorting options
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
organizationId | string |
statistics | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "organizationId": "string",
- "statistics": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "organizationId": "string",
- "statistics": true,
- "offset": 0
}
}
The Project API handles the creation and management of projects, which are the fundamental containers for time tracking activities.
Projects can include:
Project membership controls who can track time on a project. Members can have different roles:
Projects have configurable settings like:
Updates the list of members for a specific project. Can add new members, update existing ones, or remove members not included in the list. Only users with manager or owner permissions can update members. When adding new members, they must already be members of the associated team. Each member can be assigned different roles (owner, manager, member) and salary rates. The project owner cannot be removed or downgraded through this endpoint.
projectId required | string Example: proj-12345 Unique identifier of the project to update members for |
List of project member registrations. Members not included in this list will be removed from the project. Each registration includes user ID, role, and salary settings.
id | string |
role | string |
user | string |
salaryActivated | boolean |
salary | number <double> |
[- {
- "id": "string",
- "role": "string",
- "user": "string",
- "salaryActivated": true,
- "salary": 0.1
}
]
Adds a new member to a project. Project owners and managers can add new members. The new member must already be a member of the associated team if the project belongs to a team. Provides different levels of permissions: Member (1), Manager (2), Owner (3).
projectId required | string Example: proj-12345 Unique identifier of the project to add a member to |
Project member details including user identifier and permission level
projectId | string |
string | |
userId | string |
object (ProjectPermissionDto) | |
salaryActivated | boolean |
salary | number <double> |
{- "projectId": "string",
- "email": "string",
- "userId": "string",
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "salaryActivated": true,
- "salary": 0.1
}
{- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "imageUrl": "string",
- "deleted": true,
- "salaryActivated": true,
- "salary": 0.1,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "lastUpdate": 0,
- "created": 0,
- "displayName": "string",
- "initials": "string"
}
Adds multiple members to a project in a single operation. This is useful for bulk imports or when setting up a new project with multiple team members. All members must already be part of the associated team if the project belongs to a team. If any member in the batch fails validation, the entire operation will fail.
projectId required | string Example: proj-12345 Unique identifier of the project to add members to |
List of project member creation objects
projectId | string |
string | |
userId | string |
object (ProjectPermissionDto) | |
salaryActivated | boolean |
salary | number <double> |
[- {
- "projectId": "string",
- "email": "string",
- "userId": "string",
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "salaryActivated": true,
- "salary": 0.1
}
]
Removes multiple members from a project in a single operation. This is useful for cleanup operations or when removing access for multiple users at once. The project owner cannot be removed through this endpoint. If any member removal fails, the entire operation will fail.
projectId required | string Example: proj-12345 Unique identifier of the project to remove members from |
List of member IDs to remove from the project
[- "string"
]
Retrieves a paginated list of projects. Results can be filtered by team and status, and sorted by different criteria. Optional statistics can be included for each project, containing information about duration, expenses, and salaries. This endpoint supports pagination with 1-based page numbering.
teamId | string Example: teamId=team-123 Filter projects by team ID |
status | string Default: "active" Enum: "all" "active" "inactive" Example: status=active Filter projects by status |
statistics | boolean Default: false Example: statistics=true Include detailed project statistics like duration, expenses, and salaries |
sort | string Default: "alpha" Enum: "alpha" "alphaNum" "client" "duration" "created" "status" Example: sort=created Sort field for the results |
order | string Default: "asc" Enum: "asc" "desc" Example: order=desc Sort direction |
page | integer <int64> >= 1 Default: 1 Example: page=1 Page number for pagination (1-based) |
limit | integer <int64> [ 1 .. 100 ] Default: 20 Example: limit=20 Number of items per page |
{- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Creates a new project with the provided details. The authenticated user becomes the owner of the project and is automatically added as a project member with full permissions. If a team ID is provided, the project will be associated with that team and visible to team members according to their permissions.
Project data to create a new project. Must include title and can include team association, employer, description, and other settings.
title | string |
description | string |
employer | string |
office | string |
color | integer <int32> |
taskDefaultBillable | boolean |
taskDefaultRateId | string |
archived | boolean |
salaryVisibility | integer <int32> |
salary | number <double> |
teamId | string |
{- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "taskDefaultRateId": "string",
- "archived": true,
- "salaryVisibility": 0,
- "salary": 0.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}
Retrieves detailed information about a specific project by its ID. The response includes project metadata, settings, and statistics if the user has appropriate permissions. Project visibility depends on team membership and permission settings.
id required | string Example: proj-12345 Unique identifier of the project to retrieve |
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "archived": true,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}
Updates an existing project with the provided details. Only the project owner, team owner, or users with manager permissions can update project details. Fields not included in the request will retain their current values. The project ID cannot be changed, and team association changes may affect member permissions.
id required | string Example: proj-12345 Unique identifier of the project to update |
Updated project data. Any fields not included will remain unchanged.
title | string |
description | string |
employer | string |
office | string |
color | integer <int32> |
taskDefaultBillable | boolean |
taskDefaultRateId | string |
archived | boolean |
salaryVisibility | integer <int32> |
salary | number <double> |
deleted | boolean |
{- "title": "string",
- "description": "string",
- "employer": "string",
- "office": "string",
- "color": 0,
- "taskDefaultBillable": true,
- "taskDefaultRateId": "string",
- "archived": true,
- "salaryVisibility": 0,
- "salary": 0.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}
Soft deletes a project and all its associated data including tasks, expenses, pauses, notes, and project members. Only the project owner, team owner, or users with appropriate permissions can delete projects. This is a soft delete operation - data remains in the database but is marked as deleted and won't appear in regular queries. Administrators can restore deleted projects if needed.
id required | string Example: proj-12345 Unique identifier of the project to delete |
Retrieves detailed information about a specific project member by their unique identifier within a project.
projectId required | string Example: proj-12345 Unique identifier of the project |
id required | string Example: member-456 Unique identifier of the project member to retrieve |
{- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "imageUrl": "string",
- "deleted": true,
- "salaryActivated": true,
- "salary": 0.1,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "lastUpdate": 0,
- "created": 0,
- "displayName": "string",
- "initials": "string"
}
Updates an existing project member's information, including permission level and salary settings. Only project owners can change permissions to owner level.
projectId required | string Example: proj-12345 Unique identifier of the project |
id required | string Example: member-456 Unique identifier of the project member to update |
Updated project member details including permission level and salary settings
object (ProjectPermissionDto) | |
salaryActivated | boolean |
salary | number <double> |
{- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "salaryActivated": true,
- "salary": 0.1
}
{- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "imageUrl": "string",
- "deleted": true,
- "salaryActivated": true,
- "salary": 0.1,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "lastUpdate": 0,
- "created": 0,
- "displayName": "string",
- "initials": "string"
}
Removes a member from a project. Project owners can remove any member, and managers can remove regular members. The project owner cannot be removed through this endpoint.
projectId required | string Example: proj-12345 Unique identifier of the project |
id required | string Example: member-456 Unique identifier of the project member to remove |
Retrieves a paginated list of members associated with a specific project. Supports filtering by status and search terms. The response includes each member's user ID, role, permissions, and salary rates (if visible based on permissions). Project members can have different roles such as owner, manager, or member, with corresponding permission levels. The authenticated user must have at least member-level access to the project to view its members.
projectId required | string Example: proj-12345 Unique identifier of the project to get members for |
Parameters for filtering, pagination, and sorting project members
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
projectId | string |
status | string |
withoutMe | boolean |
userIds | Array of strings |
withDeleted | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "projectId": "string",
- "status": "string",
- "withoutMe": true,
- "userIds": [
- "string"
], - "withDeleted": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "imageUrl": "string",
- "deleted": true,
- "salaryActivated": true,
- "salary": 0.1,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "lastUpdate": 0,
- "created": 0,
- "displayName": "string",
- "initials": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Performs an advanced search for projects using the provided parameters. Supports filtering by team, status, date ranges, and other criteria. Returns a paginated list of projects matching the search criteria. This endpoint offers more sophisticated filtering capabilities than the standard list endpoint. The search results respect user permissions - only projects visible to the user will be returned.
Search parameters including team filters, project filters, date ranges, and pagination settings. Supports complex filtering criteria beyond the basic list endpoint.
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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
The Rate API manages billing rates that can be applied to time entries. Rates determine how time is valued for billing purposes.
Each rate includes:
Rates can be:
Rates are applied to tasks during creation or can be modified later. Projects can set default rates to be applied to new tasks automatically.
Retrieves a paginated list of billing rates with optional filtering by team, project and status. Results can be sorted by different criteria and are subject to user permission checks. Users can only see rates they have access to based on team membership.
teamId | string Example: teamId=team123 Filter rates by team ID |
projectId | string Example: projectId=project456 Filter rates by project ID - if provided, will also resolve the associated teamId |
status | string Default: "active" Enum: "all" "active" "inactive" Example: status=active Filter rates by status |
sort | string Default: "alpha" Enum: "alpha" "status" "created" Example: sort=alpha Field to sort results by |
order | string Default: "asc" Enum: "asc" "desc" Example: order=asc Sort order direction |
page | integer <int64> >= 1 Default: 1 Example: page=1 Page number (1-based pagination) |
limit | integer <int64> [ 1 .. 100 ] Default: 20 Example: limit=20 Number of items per page |
{- "items": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Creates a new billing rate. The rate can be associated with a team if the teamId is provided, otherwise it will be a personal rate. User must have appropriate team permissions to create team rates. The rate includes a title, billing factor and optional extra charge.
Rate data for creation
title | string |
factor | number <double> |
extra | number <double> |
enabled | boolean |
archived | boolean |
teamId | string |
{- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "teamId": "string"
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}
Retrieves a specific billing rate by its unique identifier. User must have appropriate permissions to view the rate. For team rates, user must be a team member with appropriate permissions.
id required | string Example: rate789 Unique identifier of the rate |
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}
Updates an existing billing rate. Only fields included in the request will be modified. User must have appropriate permissions to modify the rate. For team rates, user must be a team manager or owner.
id required | string Example: rate789 Unique identifier of the rate to update |
Updated rate data
title | string |
factor | number <double> |
extra | number <double> |
enabled | boolean |
archived | boolean |
deleted | boolean |
{- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "deleted": true
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}
Soft-deletes a billing rate by marking it as deleted. Associated tasks will have their rate references cleared. User must have appropriate permissions to delete the rate. For team rates, user must be a team manager or owner.
id required | string Example: rate789 Unique identifier of the rate to remove |
Provides advanced search capabilities for rates with full filtering options. This endpoint accepts a RateListParams object that can include complex filtering criteria such as text search, team filtering, status filtering, and pagination options.
Search parameters for filtering rates
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
teamId | string |
projectId | string |
status | string |
empty | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "teamId": "string",
- "projectId": "string",
- "status": "string",
- "empty": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
The Tag API allows for creating and managing tags to categorize tasks. Tags provide a flexible way to organize time entries beyond project structure.
Tags can be:
The API provides robust search capabilities to find tags by team, project, or usage status.
Retrieves a paginated list of tags. The results can be filtered by team, project and status. Optional statistics include usage data for each tag.
teamId | string Filter tags by team ID |
projectId | string Filter tags by project ID |
status | string Default: "active" Enum: "all" "active" "inactive" Filter tags by status |
statistics | boolean Default: false Include usage statistics for each tag |
sort | string Default: "alpha" Enum: "alpha" "status" "created" Sort field |
order | string Default: "asc" Enum: "asc" "desc" Sort order direction |
page | integer <int64> >= 1 Default: 1 Page number (1-based) |
limit | integer <int64> [ 1 .. 100 ] Default: 20 Number of items per page |
[- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
]
Creates a new tag. The tag can be associated with a team and have a color assigned. Tags are used to categorize tasks and can be used for filtering and reporting.
Tag data for creation
name | string |
color | integer <int32> |
archived | boolean |
teamId | string |
{- "name": "string",
- "color": 0,
- "archived": true,
- "teamId": "string"
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
Retrieves a specific tag by its ID. Includes all tag details and, if available, team information.
id required | string Tag ID |
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
Updates an existing tag. Can modify tag name, color, and archived status. Requires appropriate team permissions if the tag is associated with a team.
id required | string Tag ID |
Updated tag data
name | string |
color | integer <int32> |
archived | boolean |
deleted | boolean |
{- "name": "string",
- "color": 0,
- "archived": true,
- "deleted": true
}
{- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
Performs an advanced search for tags based on the provided parameters. Supports filtering by team, project, status, and search text. Results are paginated and can be sorted.
Search parameters including filters, pagination, and sorting
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
teamId | string |
projectId | string |
status | string |
statistics | boolean |
tagIds | Array of strings |
empty | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "teamId": "string",
- "projectId": "string",
- "status": "string",
- "statistics": true,
- "tagIds": [
- "string"
], - "empty": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
The Timer API provides endpoints for managing time tracking sessions. It allows starting, pausing, resuming, and stopping timers, as well as updating timer information.
A timer can be in one of three states:
running
- The timer is actively tracking timepaused
- The timer is temporarily stopped (on break)stopped
- The timer is not activeOperation | Description |
---|---|
start |
Begin a new timing session |
pause |
Temporarily stop the timer (for breaks) |
resume |
Continue after a pause |
stop |
End the timing session |
update |
Modify timer details |
All timer operations accept and return ISO 8601 formatted dates and times. The timezone of the dates is determined by the user's settings.
Retrieves the current timer state for the authenticated user. Returns information about the active timer including status (running, paused, stopped), associated task, and any active pause.
{- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "paused": true,
- "running": true,
- "stopped": true
}
Pauses an active timing session. Creates a new pause record associated with the current task and sets the timer to paused state. Returns the updated timer information with pause details.
Timer pause parameters including pause start date/time
startDateTime | string |
valid | boolean |
{- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "paused": true,
- "running": true,
- "stopped": true
}
Resumes a paused timing session. Ends the associated pause with the specified end time and sets the timer back to running state. Returns the updated timer information.
Timer resume parameters including pause end date/time
endDateTime | string |
valid | boolean |
{- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "paused": true,
- "running": true,
- "stopped": true
}
Starts a new timing session for the authenticated user on the specified project. Creates a new task for the timer and sets the timer to running state. Returns the updated timer information.
Timer start parameters including project ID and start date/time
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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "paused": true,
- "running": true,
- "stopped": true
}
Ends an active timing session. Finalizes the associated task with the specified end time and ends any active pause. Sets the timer to stopped state and returns the updated timer information.
Timer stop parameters including end date/time
endDateTime | string |
valid | boolean |
{- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "paused": true,
- "running": true,
- "stopped": true
}
Updates an active timing session with new information. Can modify the task details of the currently running or paused timer. Returns the updated timer information.
Timer update parameters including task information and optional project changes
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.1
}
{- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}, - "lastUpdate": 0,
- "created": 0,
- "paused": true,
- "running": true,
- "stopped": true
}
The Task API provides endpoints to manage time entries, which represent specific periods of work on projects.
Each task includes:
Tasks can have related:
Tasks track workflow state through flags:
billable
- Whether the task can be billedbilled
- Whether the task has been included in an invoicepaid
- Whether payment has been receivedRetrieves a paginated list of tasks with optional sorting. The response includes task details, statistics, and performance metrics if requested.
sort | string Default: "dateTime" Enum: "dateTime" "time" "created" Field to sort by |
order | string Default: "desc" Enum: "asc" "desc" Sort direction |
page | integer <int64> >= 1 Default: 1 Page number (1-based) |
limit | integer <int64> [ 1 .. 100 ] Default: 20 Number of items per page |
{- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "startDate": "string",
- "endDate": "string",
- "organizationId": "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.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "currentPerformance": {
- "startDateTime": "string",
- "endDateTime": "string",
- "duration": 0,
- "salaryTotal": 0.1
}, - "lastPerformance": {
- "startDateTime": "string",
- "endDateTime": "string",
- "duration": 0,
- "salaryTotal": 0.1
}
}
Creates a new task with the provided details. Required fields include project ID, start date/time, and description. Returns the created task with its assigned ID and metadata.
Task details for creation
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.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
Retrieves detailed information about a specific task by its ID. The response includes all task properties, associated project details, tags, expenses, notes, and other related information.
id required | string Task identifier |
{- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
Updates an existing task with the provided details. All fields in the request body will overwrite existing values. Returns the updated task with all its properties.
id required | string Task identifier |
Updated task details
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.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
Searches for tasks based on the provided criteria. Allows filtering by date range, project, team, status, tags, and more. Returns paginated results with statistics.
Search parameters including filters, sorting, and pagination options
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
startDate | string |
endDate | string |
organizationId | 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",
- "organizationId": "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "startDate": "string",
- "endDate": "string",
- "organizationId": "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.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "currentPerformance": {
- "startDateTime": "string",
- "endDateTime": "string",
- "duration": 0,
- "salaryTotal": 0.1
}, - "lastPerformance": {
- "startDateTime": "string",
- "endDateTime": "string",
- "duration": 0,
- "salaryTotal": 0.1
}
}
Updates the billing status of a task (billable, paid, billed). This focused update allows changing payment-related flags without modifying other task properties.
Task ID and status flags to update
id | string |
status | integer <int32> |
paid | boolean |
notBillable | boolean |
unpaid | boolean |
notBilled | boolean |
billed | boolean |
{- "id": "string",
- "status": 0,
- "paid": true,
- "notBillable": true,
- "unpaid": true,
- "notBilled": true,
- "billed": 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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
Updates the start and end times of a specific task. This is a focused update that only affects the time fields without changing other task properties.
Task ID and updated time values
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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
The Pause API manages breaks during task execution. Pauses represent periods within a task where work was temporarily stopped.
Each pause includes:
Pauses can be:
The system automatically calculates the duration of pauses and subtracts them from the total task time to determine actual working time.
Retrieves a paginated list of pauses with sorting options. Filtered by task ID if provided. Results are paginated and can be sorted by various fields.
taskId | string Filter pauses by task ID. If not provided, all accessible pauses will be returned. |
sort | string Default: "date" Enum: "date" "created" Field to sort results by. |
order | string Default: "asc" Enum: "asc" "desc" Sort order direction. |
page | integer <int64> >= 1 Default: 1 Page number for pagination. Pagination is 1-based (starts at 1). |
limit | integer <int64> [ 1 .. 100 ] Default: 20 Maximum number of items per page. Value must be between 1 and 100. |
{- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Creates a new pause record with start and end times. A pause must be associated with a task and contains the time period when work was paused.
Pause data for creating a new pause. Must include taskId, startDateTime, and endDateTime.
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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
Retrieves a specific pause by its unique identifier. Returns detailed information about the pause including associated task.
id required | string Unique identifier of the pause to retrieve. |
{- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
Updates an existing pause with new information. Can modify pause times, description, or other properties.
id required | string Unique identifier of the pause to update. |
New pause data for updating. Only provided fields will be updated.
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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
Advanced search for pauses with various filtering options. Provides more sophisticated search capabilities than the list endpoint.
Search parameters for filtering pauses. Can include task ID, date ranges, sorting options, and pagination.
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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "totalTime": 0
}
], - "pauses": [
- { }
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
The Expense API manages costs incurred during work that need to be reimbursed or passed through to clients.
Each expense includes:
Expenses can include file attachments such as receipts or invoices. The API provides endpoints to upload, download, and manage these files.
The refund status tracks whether expenses have been reimbursed to the user. This can be updated through dedicated status endpoints.
Retrieves a paginated list of expenses. The list can be filtered by taskId and sorted by various criteria. Pagination is 1-based.
taskId | string Example: taskId=task-123 Task ID to filter expenses by |
filter | string Example: filter=unpaid Filter expenses by status: 'all', 'paid', 'unpaid' |
sort | string Example: sort=date Sort field: 'date' for sort by date, 'created' for sort by creation time. Default is date. |
order | string Example: order=desc Sort order: 'asc' for ascending, 'desc' for descending. Default is asc. |
page | integer <int32> Example: page=1 Page number (1-based). Default is 1. |
limit | integer <int32> Example: limit=20 Number of items per page (1-100). Default is 20. |
{- "items": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Creates a new expense with the provided details. The expense will be associated with the task specified in the DTO.
Expense data for creation
description | string |
dateTime | string |
amount | number <double> |
refunded | boolean |
fileUri | string |
fileName | string |
taskId | string |
{- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "taskId": "string"
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
Retrieves detailed information about a specific expense by its ID.
id required | string Example: exp-123 Expense ID |
{- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
Updates an existing expense with the provided details. Only the fields included in the DTO will be updated.
id required | string Example: exp-123 Expense ID |
Updated expense data
description | string |
dateTime | string |
amount | number <double> |
refunded | boolean |
deleted | boolean |
fileUri | string |
fileName | string |
{- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "refunded": true,
- "deleted": true,
- "fileUri": "string",
- "fileName": "string"
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
Performs an advanced search for expenses based on the provided search parameters. Supports filtering by multiple criteria, date ranges, and full-text search.
Search parameters for expenses
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.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Updates the refund status of an expense. This is typically used to mark expenses as refunded after payment has been processed.
Expense status update data containing ID and refund status
id | string |
refunded | boolean |
{- "id": "string",
- "refunded": true
}
{- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
The Note API manages text annotations and file attachments related to tasks. Notes provide a way to document work details, decisions, or observations.
Each note includes:
Notes can include file attachments. The API provides endpoints to upload, download, and manage these files.
Notes can be exported as PDF documents for reporting or sharing with clients or team members.
Retrieves a paginated list of notes with optional filtering by task ID and customizable sorting. Supports both ascending and descending order. Notes are filtered based on the authenticated user's permissions and can be limited to notes for a specific task.
taskId | string ID of the task to filter notes by. If provided, only notes for this task will be returned. |
sort | string Default: "date" Enum: "date" "created" Example: sort=date Field to sort the notes by |
order | string Default: "asc" Enum: "asc" "desc" Sort order direction |
page | integer <int64> >= 1 Default: 1 Example: page=1 Page number for pagination |
limit | integer <int64> [ 1 .. 100 ] Default: 20 Example: limit=20 Maximum number of notes to return per page |
{- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Creates a new note entry in the system. The note can be associated with a task and include text content and optional file attachments. Users can only create notes for tasks they have permission to access. The created note will inherit permissions from its associated task.
Note data for creation
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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
Retrieves detailed information about a specific note using its unique identifier. Returns the complete note object including metadata, content, and file information if available. Users can only access notes they have permission to view based on project membership and role.
id required | string Unique identifier of the note to retrieve |
{- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
Modifies an existing note's content, metadata, or attachments. Partial updates are supported through the NoteUpdateDto object. Only the note owner or users with project manager/owner roles can update notes. The note's last update timestamp will be automatically updated.
id required | string Unique identifier of the note to update |
Note data for update
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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
Permanently removes a note and its associated data (including attachments) from the system. This action cannot be undone. Only the note owner or users with project manager/owner roles can delete notes. The deletion is a soft delete that marks the note as deleted rather than physically removing it.
id required | string Unique identifier of the note to delete |
Generates and returns a signed URL to access the file attachment associated with a specific note. The URL may be temporary and require authentication. If the note has no file attachment or the user doesn't have permission to access it, an empty URL will be returned. The system handles file permissions and may create copies for shared access.
id required | string Unique identifier of the note whose file URL should be retrieved |
{- "url": "string"
}
Creates a printer-friendly PDF version of the note, formatting its content and metadata appropriately for physical or PDF output. The generated PDF includes note content, creation date, associated task information, and user details. The PDF is returned as binary data with the appropriate content type.
id required | string Unique identifier of the note to print |
Performs an advanced search across notes using multiple criteria defined in NoteListParams. Supports filtering by task IDs, date range, document ID, and text search. Results can be sorted and paginated. This endpoint is more flexible than the basic list endpoint and allows for complex queries.
Search parameters for filtering notes
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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
The Document API handles the creation and management of formal documents like invoices, timesheets, and work records. These documents can incorporate tasks, expenses, and notes to create consolidated records for clients and internal use.
The API supports three primary document types:
Documents include comprehensive information:
The API supports the full document lifecycle:
Documents can be saved as templates for reuse, maintaining consistent formatting and content structure across multiple documents.
Retrieves a paginated list of documents based on filter criteria. Documents can be filtered by organization, type, status, and template flag. Results can be sorted and ordered according to specified parameters.
organizationId | string Example: organizationId=org-123456 Organization ID to filter documents by |
type | integer <int32> Default: 0 Enum: 0 1 2 Document type to filter by: 0 = Invoice, 1 = Timesheet, 2 = Work Record |
status | string Enum: "paid" "unpaid" "approved" "notApproved" Example: status=unpaid Document status to filter by: paid, unpaid, approved, notApproved |
template | boolean Default: false Filter by template flag. If true, returns only document templates |
sort | string Enum: "date" "created" "name" "customer" Example: sort=date Field to sort results by |
order | string Default: "desc" Enum: "asc" "desc" Example: order=desc Sort order: asc or desc |
page | integer <int32> >= 1 Default: 1 Example: page=1 Page number for pagination |
limit | integer <int32> [ 1 .. 100 ] Default: 20 Example: limit=20 Maximum number of results per page |
{- "items": [
- {
- "id": "string",
- "organizationId": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "image": "string",
- "company": "string",
- "companyDescription": "string",
- "companyAddressLine1": "string",
- "companyAddressLine2": "string",
- "companyAddressLine3": "string",
- "companyAddressLine4": "string",
- "customer": "string",
- "customerId": "string",
- "customerAddressLine1": "string",
- "customerAddressLine2": "string",
- "customerAddressLine3": "string",
- "customerAddressLine4": "string",
- "name": "string",
- "date": "string",
- "invoiceId": "string",
- "category": 0,
- "headline": "string",
- "description": "string",
- "terms": "string",
- "signature": "string",
- "payment": 0.1,
- "paymentDate": "string",
- "paymentMethod": "string",
- "taskSubtotal": 0.1,
- "expenseSubtotal": 0.1,
- "subtotal": 0.1,
- "tax": 0.1,
- "taxValue": 0.1,
- "taxSecond": 0.1,
- "taxSecondValue": 0.1,
- "discount": 0.1,
- "discountValue": 0.1,
- "total": 0.1,
- "duration": 0,
- "templateId": "string",
- "templateName": "string",
- "template": true,
- "paid": true,
- "approved": true,
- "includeExpenses": true,
- "includeNotes": true,
- "useRelatives": true,
- "hideTaxes": true,
- "hideSummation": true,
- "showSecondTax": true,
- "showDiscount": true,
- "showMemberName": true,
- "showProjectTitle": true,
- "showTags": true,
- "hideTaskTime": true,
- "hideRate": true,
- "hideExpenseDateTime": true,
- "discountSecondValue": 0.1,
- "showDiscountSecond": true,
- "fieldDiscountSecond": "string",
- "fieldTitle": "string",
- "fieldItem": "string",
- "fieldDescription": "string",
- "fieldRate": "string",
- "fieldQuantity": "string",
- "fieldTotal": "string",
- "fieldTotalSum": "string",
- "fieldSubTotal": "string",
- "fieldTax": "string",
- "fieldSecondTax": "string",
- "fieldDiscount": "string",
- "fieldExpenseTitle": "string",
- "fieldExpenseTotal": "string",
- "tasks": [
- {
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": null,
- "name": null,
- "description": null,
- "image": null,
- "color": null,
- "subscription": null,
- "user": null,
- "lastUpdate": null,
- "created": null,
- "deleted": null,
- "permission": null
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": null,
- "owner": null,
- "manager": null,
- "member": null,
- "managerOrOwner": null
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": null,
- "name": null,
- "description": null,
- "image": null,
- "color": null,
- "subscription": null,
- "user": null,
- "lastUpdate": null,
- "created": null,
- "deleted": null,
- "permission": null
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": null,
- "owner": null,
- "manager": null,
- "member": null,
- "managerOrOwner": null
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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": null,
- "projectTitle": null,
- "projectColor": null,
- "taskId": null,
- "startDateTime": null,
- "endDateTime": null,
- "location": null,
- "running": null
}, - "displayName": "string",
- "initials": "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": null,
- "projectTitle": null,
- "projectColor": null,
- "taskId": null,
- "startDateTime": null,
- "endDateTime": null,
- "location": null,
- "running": null
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": null,
- "name": null,
- "description": null,
- "image": null,
- "color": null,
- "subscription": null,
- "user": null,
- "lastUpdate": null,
- "created": null,
- "deleted": null,
- "permission": null
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": null,
- "owner": null,
- "manager": null,
- "member": null,
- "managerOrOwner": null
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": null,
- "name": null,
- "description": null,
- "image": null,
- "color": null,
- "subscription": null,
- "user": null,
- "lastUpdate": null,
- "created": null,
- "deleted": null,
- "permission": null
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": null,
- "owner": null,
- "manager": null,
- "member": null,
- "managerOrOwner": null
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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": null,
- "projectTitle": null,
- "projectColor": null,
- "taskId": null,
- "startDateTime": null,
- "endDateTime": null,
- "location": null,
- "running": null
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": null,
- "projectTitle": null,
- "projectColor": null,
- "taskId": null,
- "startDateTime": null,
- "endDateTime": null,
- "location": null,
- "running": null
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "saveAsTemplate": true,
- "refreshTemplate": true,
- "status": 0,
- "fullyPaid": true,
- "partiallyPaid": true,
- "invoice": true,
- "timesheet": true,
- "workRecord": true
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
Creates a new document based on the provided data. Can create invoices, timesheets, or work records. Document can include associated tasks, expenses, and notes. A document can also be saved as a template for future use.
Document data for creation
organizationId | string |
image | string |
company | string |
companyDescription | string |
companyAddressLine1 | string |
companyAddressLine2 | string |
companyAddressLine3 | string |
companyAddressLine4 | string |
customer | string |
customerId | string |
customerAddressLine1 | string |
customerAddressLine2 | string |
customerAddressLine3 | string |
customerAddressLine4 | string |
name | string |
date | string |
invoiceId | string |
category | integer <int32> |
headline | string |
description | string |
terms | string |
signature | string |
payment | number <double> |
paymentDate | string |
paymentMethod | string |
taskSubtotal | number <double> |
expenseSubtotal | number <double> |
subtotal | number <double> |
tax | number <double> |
taxValue | number <double> |
taxSecond | number <double> |
taxSecondValue | number <double> |
discount | number <double> |
discountValue | number <double> |
total | number <double> |
duration | integer <int64> |
templateId | string |
templateName | string |
template | boolean |
paid | boolean |
approved | boolean |
includeExpenses | boolean |
includeNotes | boolean |
useRelatives | boolean |
hideTaxes | boolean |
hideSummation | boolean |
showSecondTax | boolean |
showDiscount | boolean |
showMemberName | boolean |
showProjectTitle | boolean |
showTags | boolean |
hideTaskTime | boolean |
hideRate | boolean |
hideExpenseDateTime | boolean |
discountSecondValue | number <double> |
showDiscountSecond | boolean |
fieldDiscountSecond | string |
fieldTitle | string |
fieldItem | string |
fieldDescription | string |
fieldRate | string |
fieldQuantity | string |
fieldTotal | string |
fieldTotalSum | string |
fieldSubTotal | string |
fieldTax | string |
fieldSecondTax | string |
fieldDiscount | string |
fieldExpenseTitle | string |
fieldExpenseTotal | string |
taskIds | Array of strings |
expenseIds | Array of strings |
noteIds | Array of strings |
saveAsTemplate | boolean |
refreshTemplate | boolean |
{- "organizationId": "string",
- "image": "string",
- "company": "string",
- "companyDescription": "string",
- "companyAddressLine1": "string",
- "companyAddressLine2": "string",
- "companyAddressLine3": "string",
- "companyAddressLine4": "string",
- "customer": "string",
- "customerId": "string",
- "customerAddressLine1": "string",
- "customerAddressLine2": "string",
- "customerAddressLine3": "string",
- "customerAddressLine4": "string",
- "name": "string",
- "date": "string",
- "invoiceId": "string",
- "category": 0,
- "headline": "string",
- "description": "string",
- "terms": "string",
- "signature": "string",
- "payment": 0.1,
- "paymentDate": "string",
- "paymentMethod": "string",
- "taskSubtotal": 0.1,
- "expenseSubtotal": 0.1,
- "subtotal": 0.1,
- "tax": 0.1,
- "taxValue": 0.1,
- "taxSecond": 0.1,
- "taxSecondValue": 0.1,
- "discount": 0.1,
- "discountValue": 0.1,
- "total": 0.1,
- "duration": 0,
- "templateId": "string",
- "templateName": "string",
- "template": true,
- "paid": true,
- "approved": true,
- "includeExpenses": true,
- "includeNotes": true,
- "useRelatives": true,
- "hideTaxes": true,
- "hideSummation": true,
- "showSecondTax": true,
- "showDiscount": true,
- "showMemberName": true,
- "showProjectTitle": true,
- "showTags": true,
- "hideTaskTime": true,
- "hideRate": true,
- "hideExpenseDateTime": true,
- "discountSecondValue": 0.1,
- "showDiscountSecond": true,
- "fieldDiscountSecond": "string",
- "fieldTitle": "string",
- "fieldItem": "string",
- "fieldDescription": "string",
- "fieldRate": "string",
- "fieldQuantity": "string",
- "fieldTotal": "string",
- "fieldTotalSum": "string",
- "fieldSubTotal": "string",
- "fieldTax": "string",
- "fieldSecondTax": "string",
- "fieldDiscount": "string",
- "fieldExpenseTitle": "string",
- "fieldExpenseTotal": "string",
- "taskIds": [
- "string"
], - "expenseIds": [
- "string"
], - "noteIds": [
- "string"
], - "saveAsTemplate": true,
- "refreshTemplate": true
}
{- "id": "string",
- "organizationId": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "image": "string",
- "company": "string",
- "companyDescription": "string",
- "companyAddressLine1": "string",
- "companyAddressLine2": "string",
- "companyAddressLine3": "string",
- "companyAddressLine4": "string",
- "customer": "string",
- "customerId": "string",
- "customerAddressLine1": "string",
- "customerAddressLine2": "string",
- "customerAddressLine3": "string",
- "customerAddressLine4": "string",
- "name": "string",
- "date": "string",
- "invoiceId": "string",
- "category": 0,
- "headline": "string",
- "description": "string",
- "terms": "string",
- "signature": "string",
- "payment": 0.1,
- "paymentDate": "string",
- "paymentMethod": "string",
- "taskSubtotal": 0.1,
- "expenseSubtotal": 0.1,
- "subtotal": 0.1,
- "tax": 0.1,
- "taxValue": 0.1,
- "taxSecond": 0.1,
- "taxSecondValue": 0.1,
- "discount": 0.1,
- "discountValue": 0.1,
- "total": 0.1,
- "duration": 0,
- "templateId": "string",
- "templateName": "string",
- "template": true,
- "paid": true,
- "approved": true,
- "includeExpenses": true,
- "includeNotes": true,
- "useRelatives": true,
- "hideTaxes": true,
- "hideSummation": true,
- "showSecondTax": true,
- "showDiscount": true,
- "showMemberName": true,
- "showProjectTitle": true,
- "showTags": true,
- "hideTaskTime": true,
- "hideRate": true,
- "hideExpenseDateTime": true,
- "discountSecondValue": 0.1,
- "showDiscountSecond": true,
- "fieldDiscountSecond": "string",
- "fieldTitle": "string",
- "fieldItem": "string",
- "fieldDescription": "string",
- "fieldRate": "string",
- "fieldQuantity": "string",
- "fieldTotal": "string",
- "fieldTotalSum": "string",
- "fieldSubTotal": "string",
- "fieldTax": "string",
- "fieldSecondTax": "string",
- "fieldDiscount": "string",
- "fieldExpenseTitle": "string",
- "fieldExpenseTotal": "string",
- "tasks": [
- {
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "saveAsTemplate": true,
- "refreshTemplate": true,
- "status": 0,
- "fullyPaid": true,
- "partiallyPaid": true,
- "invoice": true,
- "timesheet": true,
- "workRecord": true
}
Retrieves a specific document by its unique identifier. The response includes all document details along with associated tasks, expenses, and notes.
id required | string Example: doc-123456 Document ID to retrieve |
{- "id": "string",
- "organizationId": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "image": "string",
- "company": "string",
- "companyDescription": "string",
- "companyAddressLine1": "string",
- "companyAddressLine2": "string",
- "companyAddressLine3": "string",
- "companyAddressLine4": "string",
- "customer": "string",
- "customerId": "string",
- "customerAddressLine1": "string",
- "customerAddressLine2": "string",
- "customerAddressLine3": "string",
- "customerAddressLine4": "string",
- "name": "string",
- "date": "string",
- "invoiceId": "string",
- "category": 0,
- "headline": "string",
- "description": "string",
- "terms": "string",
- "signature": "string",
- "payment": 0.1,
- "paymentDate": "string",
- "paymentMethod": "string",
- "taskSubtotal": 0.1,
- "expenseSubtotal": 0.1,
- "subtotal": 0.1,
- "tax": 0.1,
- "taxValue": 0.1,
- "taxSecond": 0.1,
- "taxSecondValue": 0.1,
- "discount": 0.1,
- "discountValue": 0.1,
- "total": 0.1,
- "duration": 0,
- "templateId": "string",
- "templateName": "string",
- "template": true,
- "paid": true,
- "approved": true,
- "includeExpenses": true,
- "includeNotes": true,
- "useRelatives": true,
- "hideTaxes": true,
- "hideSummation": true,
- "showSecondTax": true,
- "showDiscount": true,
- "showMemberName": true,
- "showProjectTitle": true,
- "showTags": true,
- "hideTaskTime": true,
- "hideRate": true,
- "hideExpenseDateTime": true,
- "discountSecondValue": 0.1,
- "showDiscountSecond": true,
- "fieldDiscountSecond": "string",
- "fieldTitle": "string",
- "fieldItem": "string",
- "fieldDescription": "string",
- "fieldRate": "string",
- "fieldQuantity": "string",
- "fieldTotal": "string",
- "fieldTotalSum": "string",
- "fieldSubTotal": "string",
- "fieldTax": "string",
- "fieldSecondTax": "string",
- "fieldDiscount": "string",
- "fieldExpenseTitle": "string",
- "fieldExpenseTotal": "string",
- "tasks": [
- {
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "saveAsTemplate": true,
- "refreshTemplate": true,
- "status": 0,
- "fullyPaid": true,
- "partiallyPaid": true,
- "invoice": true,
- "timesheet": true,
- "workRecord": true
}
Updates an existing document with the provided data. Can update all document properties, including status flags (paid, approved), content, and associated tasks, expenses, and notes.
id required | string Example: doc-123456 Document ID to update |
Updated document data
deleted | boolean |
image | string |
company | string |
companyDescription | string |
companyAddressLine1 | string |
companyAddressLine2 | string |
companyAddressLine3 | string |
companyAddressLine4 | string |
customer | string |
customerId | string |
customerAddressLine1 | string |
customerAddressLine2 | string |
customerAddressLine3 | string |
customerAddressLine4 | string |
name | string |
date | string |
invoiceId | string |
category | integer <int32> |
headline | string |
description | string |
terms | string |
signature | string |
payment | number <double> |
paymentDate | string |
paymentMethod | string |
taskSubtotal | number <double> |
expenseSubtotal | number <double> |
subtotal | number <double> |
tax | number <double> |
taxValue | number <double> |
taxSecond | number <double> |
taxSecondValue | number <double> |
discount | number <double> |
discountValue | number <double> |
hideTaskTime | boolean |
hideRate | boolean |
hideExpenseDateTime | boolean |
discountSecondValue | number <double> |
showDiscountSecond | boolean |
fieldDiscountSecond | string |
total | number <double> |
duration | integer <int64> |
templateId | string |
templateName | string |
template | boolean |
paid | boolean |
approved | boolean |
includeExpenses | boolean |
includeNotes | boolean |
useRelatives | boolean |
hideTaxes | boolean |
hideSummation | boolean |
showSecondTax | boolean |
showDiscount | boolean |
showMemberName | boolean |
showProjectTitle | boolean |
showTags | boolean |
fieldTitle | string |
fieldItem | string |
fieldDescription | string |
fieldRate | string |
fieldQuantity | string |
fieldTotal | string |
fieldTotalSum | string |
fieldSubTotal | string |
fieldTax | string |
fieldSecondTax | string |
fieldDiscount | string |
fieldExpenseTitle | string |
fieldExpenseTotal | string |
taskIds | Array of strings |
expenseIds | Array of strings |
noteIds | Array of strings |
saveAsTemplate | boolean |
refreshTemplate | boolean |
{- "deleted": true,
- "image": "string",
- "company": "string",
- "companyDescription": "string",
- "companyAddressLine1": "string",
- "companyAddressLine2": "string",
- "companyAddressLine3": "string",
- "companyAddressLine4": "string",
- "customer": "string",
- "customerId": "string",
- "customerAddressLine1": "string",
- "customerAddressLine2": "string",
- "customerAddressLine3": "string",
- "customerAddressLine4": "string",
- "name": "string",
- "date": "string",
- "invoiceId": "string",
- "category": 0,
- "headline": "string",
- "description": "string",
- "terms": "string",
- "signature": "string",
- "payment": 0.1,
- "paymentDate": "string",
- "paymentMethod": "string",
- "taskSubtotal": 0.1,
- "expenseSubtotal": 0.1,
- "subtotal": 0.1,
- "tax": 0.1,
- "taxValue": 0.1,
- "taxSecond": 0.1,
- "taxSecondValue": 0.1,
- "discount": 0.1,
- "discountValue": 0.1,
- "hideTaskTime": true,
- "hideRate": true,
- "hideExpenseDateTime": true,
- "discountSecondValue": 0.1,
- "showDiscountSecond": true,
- "fieldDiscountSecond": "string",
- "total": 0.1,
- "duration": 0,
- "templateId": "string",
- "templateName": "string",
- "template": true,
- "paid": true,
- "approved": true,
- "includeExpenses": true,
- "includeNotes": true,
- "useRelatives": true,
- "hideTaxes": true,
- "hideSummation": true,
- "showSecondTax": true,
- "showDiscount": true,
- "showMemberName": true,
- "showProjectTitle": true,
- "showTags": true,
- "fieldTitle": "string",
- "fieldItem": "string",
- "fieldDescription": "string",
- "fieldRate": "string",
- "fieldQuantity": "string",
- "fieldTotal": "string",
- "fieldTotalSum": "string",
- "fieldSubTotal": "string",
- "fieldTax": "string",
- "fieldSecondTax": "string",
- "fieldDiscount": "string",
- "fieldExpenseTitle": "string",
- "fieldExpenseTotal": "string",
- "taskIds": [
- "string"
], - "expenseIds": [
- "string"
], - "noteIds": [
- "string"
], - "saveAsTemplate": true,
- "refreshTemplate": true
}
{- "id": "string",
- "organizationId": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "image": "string",
- "company": "string",
- "companyDescription": "string",
- "companyAddressLine1": "string",
- "companyAddressLine2": "string",
- "companyAddressLine3": "string",
- "companyAddressLine4": "string",
- "customer": "string",
- "customerId": "string",
- "customerAddressLine1": "string",
- "customerAddressLine2": "string",
- "customerAddressLine3": "string",
- "customerAddressLine4": "string",
- "name": "string",
- "date": "string",
- "invoiceId": "string",
- "category": 0,
- "headline": "string",
- "description": "string",
- "terms": "string",
- "signature": "string",
- "payment": 0.1,
- "paymentDate": "string",
- "paymentMethod": "string",
- "taskSubtotal": 0.1,
- "expenseSubtotal": 0.1,
- "subtotal": 0.1,
- "tax": 0.1,
- "taxValue": 0.1,
- "taxSecond": 0.1,
- "taxSecondValue": 0.1,
- "discount": 0.1,
- "discountValue": 0.1,
- "total": 0.1,
- "duration": 0,
- "templateId": "string",
- "templateName": "string",
- "template": true,
- "paid": true,
- "approved": true,
- "includeExpenses": true,
- "includeNotes": true,
- "useRelatives": true,
- "hideTaxes": true,
- "hideSummation": true,
- "showSecondTax": true,
- "showDiscount": true,
- "showMemberName": true,
- "showProjectTitle": true,
- "showTags": true,
- "hideTaskTime": true,
- "hideRate": true,
- "hideExpenseDateTime": true,
- "discountSecondValue": 0.1,
- "showDiscountSecond": true,
- "fieldDiscountSecond": "string",
- "fieldTitle": "string",
- "fieldItem": "string",
- "fieldDescription": "string",
- "fieldRate": "string",
- "fieldQuantity": "string",
- "fieldTotal": "string",
- "fieldTotalSum": "string",
- "fieldSubTotal": "string",
- "fieldTax": "string",
- "fieldSecondTax": "string",
- "fieldDiscount": "string",
- "fieldExpenseTitle": "string",
- "fieldExpenseTotal": "string",
- "tasks": [
- {
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "saveAsTemplate": true,
- "refreshTemplate": true,
- "status": 0,
- "fullyPaid": true,
- "partiallyPaid": true,
- "invoice": true,
- "timesheet": true,
- "workRecord": true
}
Generates a PDF printable version of a document based on the provided print settings. The document can be formatted according to template settings and can optionally include ZUGFeRD-compliant XML data for electronic invoice processing. Returns the document as a PDF binary stream.
Document print settings
id | string |
zugferd | boolean |
{- "id": "string",
- "zugferd": true
}
Performs an advanced search for documents based on provided criteria. Supports full-text search across document fields (name, customer, description, invoiceId, customerId) and allows filtering by organization, type, status, and template flag. Results can be sorted, ordered, and paginated.
Search and filter parameters
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
organizationId | string |
category | integer <int32> |
status | string |
template | boolean |
empty | boolean |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "organizationId": "string",
- "category": 0,
- "status": "string",
- "template": true,
- "empty": true,
- "offset": 0
}
{- "items": [
- {
- "id": "string",
- "organizationId": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "image": "string",
- "company": "string",
- "companyDescription": "string",
- "companyAddressLine1": "string",
- "companyAddressLine2": "string",
- "companyAddressLine3": "string",
- "companyAddressLine4": "string",
- "customer": "string",
- "customerId": "string",
- "customerAddressLine1": "string",
- "customerAddressLine2": "string",
- "customerAddressLine3": "string",
- "customerAddressLine4": "string",
- "name": "string",
- "date": "string",
- "invoiceId": "string",
- "category": 0,
- "headline": "string",
- "description": "string",
- "terms": "string",
- "signature": "string",
- "payment": 0.1,
- "paymentDate": "string",
- "paymentMethod": "string",
- "taskSubtotal": 0.1,
- "expenseSubtotal": 0.1,
- "subtotal": 0.1,
- "tax": 0.1,
- "taxValue": 0.1,
- "taxSecond": 0.1,
- "taxSecondValue": 0.1,
- "discount": 0.1,
- "discountValue": 0.1,
- "total": 0.1,
- "duration": 0,
- "templateId": "string",
- "templateName": "string",
- "template": true,
- "paid": true,
- "approved": true,
- "includeExpenses": true,
- "includeNotes": true,
- "useRelatives": true,
- "hideTaxes": true,
- "hideSummation": true,
- "showSecondTax": true,
- "showDiscount": true,
- "showMemberName": true,
- "showProjectTitle": true,
- "showTags": true,
- "hideTaskTime": true,
- "hideRate": true,
- "hideExpenseDateTime": true,
- "discountSecondValue": 0.1,
- "showDiscountSecond": true,
- "fieldDiscountSecond": "string",
- "fieldTitle": "string",
- "fieldItem": "string",
- "fieldDescription": "string",
- "fieldRate": "string",
- "fieldQuantity": "string",
- "fieldTotal": "string",
- "fieldTotalSum": "string",
- "fieldSubTotal": "string",
- "fieldTax": "string",
- "fieldSecondTax": "string",
- "fieldDiscount": "string",
- "fieldExpenseTitle": "string",
- "fieldExpenseTotal": "string",
- "tasks": [
- {
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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
}, - "displayName": "string",
- "initials": "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": null,
- "name": null,
- "description": null,
- "image": null,
- "color": null,
- "subscription": null,
- "user": null,
- "lastUpdate": null,
- "created": null,
- "deleted": null,
- "permission": null
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": null,
- "owner": null,
- "manager": null,
- "member": null,
- "managerOrOwner": null
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": null,
- "name": null,
- "description": null,
- "image": null,
- "color": null,
- "subscription": null,
- "user": null,
- "lastUpdate": null,
- "created": null,
- "deleted": null,
- "permission": null
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": null,
- "owner": null,
- "manager": null,
- "member": null,
- "managerOrOwner": null
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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": null,
- "projectTitle": null,
- "projectColor": null,
- "taskId": null,
- "startDateTime": null,
- "endDateTime": null,
- "location": null,
- "running": null
}, - "displayName": "string",
- "initials": "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": null,
- "projectTitle": null,
- "projectColor": null,
- "taskId": null,
- "startDateTime": null,
- "endDateTime": null,
- "location": null,
- "running": null
}, - "displayName": "string",
- "initials": "string"
}
}
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- {
- "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.1,
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": null,
- "name": null,
- "description": null,
- "image": null,
- "color": null,
- "subscription": null,
- "user": null,
- "lastUpdate": null,
- "created": null,
- "deleted": null,
- "permission": null
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": null,
- "owner": null,
- "manager": null,
- "member": null,
- "managerOrOwner": null
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}, - "rate": {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "title": "string",
- "factor": 0.1,
- "extra": 0.1,
- "enabled": true,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": null,
- "user": null,
- "expires": null,
- "status": null,
- "plan": null,
- "licenses": null,
- "paymentOption": null,
- "business": null,
- "email": null,
- "firstname": null,
- "lastname": null,
- "vatId": null,
- "displayName": null,
- "street": null,
- "city": null,
- "state": null,
- "zip": null,
- "country": null,
- "countryIso": null,
- "language": null,
- "includeTaxForBusiness": null,
- "activated": null,
- "cancellationOffer": null,
- "subscriptionActive": null,
- "subscriptionCancelled": null,
- "subscriptionInactive": null,
- "startedTestimonial": null,
- "activationDate": null,
- "cancellationDate": null,
- "permissionAdmin": null,
- "valid": null,
- "expired": null,
- "validAndActivated": null,
- "payPalPayment": null,
- "stripePayment": null,
- "invoicePayment": null,
- "googlePlayPayment": null,
- "currency": null,
- "businessCustomer": null,
- "euCustomer": null,
- "eu": null,
- "at": null,
- "ch": null,
- "uk": null,
- "product": null,
- "licenseQuantity": null,
- "active": null,
- "trial": null,
- "cancelled": null,
- "member": null,
- "planBusiness": null,
- "planPro": null,
- "planPlus": null,
- "planBasic": null,
- "monthlyPlan": null,
- "yearlyPlan": null,
- "organization": null
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": null,
- "billing": null,
- "admin": null
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}
}, - "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
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string",
- "tags": [
- {
- "id": "string",
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "name": "string",
- "color": 0,
- "archived": true,
- "team": {
- "id": "string",
- "organization": {
- "id": null,
- "name": null,
- "description": null,
- "image": null,
- "color": null,
- "subscription": null,
- "user": null,
- "lastUpdate": null,
- "created": null,
- "deleted": null,
- "permission": null
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": null,
- "owner": null,
- "manager": null,
- "member": null,
- "managerOrOwner": null
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "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": null,
- "projectTitle": null,
- "projectColor": null,
- "taskId": null,
- "startDateTime": null,
- "endDateTime": null,
- "location": null,
- "running": null
}, - "displayName": "string",
- "initials": "string"
}
}
], - "expenses": [
- {
- "id": "string",
- "user": "string",
- "deleted": true,
- "lastUpdate": 0,
- "created": 0,
- "description": "string",
- "dateTime": "string",
- "amount": 0.1,
- "refunded": true,
- "fileUri": "string",
- "fileName": "string",
- "task": { },
- "member": {
- "uid": "string",
- "firstname": "string",
- "lastname": "string",
- "email": "string",
- "employeeId": "string",
- "imageUrl": "string",
- "deleted": true,
- "activity": {
- "projectId": null,
- "projectTitle": null,
- "projectColor": null,
- "taskId": null,
- "startDateTime": null,
- "endDateTime": null,
- "location": null,
- "running": null
}, - "displayName": "string",
- "initials": "string"
}, - "invoiceId": "string"
}
], - "notes": [
- { }
], - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expensesTotal": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "notesTotal": 0,
- "salaryVisible": true
}, - "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
}, - "displayName": "string",
- "initials": "string"
}
}
], - "saveAsTemplate": true,
- "refreshTemplate": true,
- "status": 0,
- "fullyPaid": true,
- "partiallyPaid": true,
- "invoice": true,
- "timesheet": true,
- "workRecord": true
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "offset": 0
}
}
The Export API facilitates generating and delivering comprehensive reports in various formats for analysis, reporting, and integration purposes.
The API supports multiple export formats:
Exports can include various data types:
Reports can be:
Exports are highly customizable through parameters:
Creates an export file based on the provided parameters and returns a signed URL to download it. Supports various formats (Excel, CSV, PDF), report types, date ranges, and filtering options. The export can include task data, project summaries, team member summaries, and more based on the report type selection.
Configuration parameters for the export, including format, report type, date range, filtering options, etc.
report | integer <int32> |
string | |
filename | string |
teamIds | Array of strings |
projectIds | Array of strings |
userIds | Array of strings |
tagIds | Array of strings |
type | string |
startDate | string |
endDate | string |
format | string |
filter | string |
splitTask | boolean |
summarize | boolean |
Array of objects (ExportedField) | |
boolean | |
xls | boolean |
csv | boolean |
xls1904 | boolean |
dateRange | string |
mimeType | string |
fileType | string |
fileExtension | string |
{- "report": 0,
- "email": "string",
- "filename": "string",
- "teamIds": [
- "string"
], - "projectIds": [
- "string"
], - "userIds": [
- "string"
], - "tagIds": [
- "string"
], - "type": "string",
- "startDate": "string",
- "endDate": "string",
- "format": "string",
- "filter": "string",
- "splitTask": true,
- "summarize": true,
- "exportedFields": [
- {
- "id": 0,
- "name": "string",
- "position": 0,
- "projectField": true,
- "teamField": true
}
], - "pdf": true,
- "xls": true,
- "csv": true,
- "xls1904": true,
- "dateRange": "string",
- "mimeType": "string",
- "fileType": "string",
- "fileExtension": "string"
}
{- "url": "string"
}
Creates an export file based on the provided parameters and sends it via email to the specified address. This endpoint uses the same export generation logic as the /data endpoint but delivers the result via email instead of returning a download URL. The email field in exportParams must be provided.
Configuration parameters for the export to be sent via email. Must include a valid email address in the 'email' field along with format, report type, date range, and other filtering options.
report | integer <int32> |
string | |
filename | string |
teamIds | Array of strings |
projectIds | Array of strings |
userIds | Array of strings |
tagIds | Array of strings |
type | string |
startDate | string |
endDate | string |
format | string |
filter | string |
splitTask | boolean |
summarize | boolean |
Array of objects (ExportedField) | |
boolean | |
xls | boolean |
csv | boolean |
xls1904 | boolean |
dateRange | string |
mimeType | string |
fileType | string |
fileExtension | string |
{- "report": 0,
- "email": "string",
- "filename": "string",
- "teamIds": [
- "string"
], - "projectIds": [
- "string"
], - "userIds": [
- "string"
], - "tagIds": [
- "string"
], - "type": "string",
- "startDate": "string",
- "endDate": "string",
- "format": "string",
- "filter": "string",
- "splitTask": true,
- "summarize": true,
- "exportedFields": [
- {
- "id": 0,
- "name": "string",
- "position": 0,
- "projectField": true,
- "teamField": true
}
], - "pdf": true,
- "xls": true,
- "csv": true,
- "xls1904": true,
- "dateRange": "string",
- "mimeType": "string",
- "fileType": "string",
- "fileExtension": "string"
}
The Automation API manages automated time tracking triggers based on location, network connections, or beacon detection. These automations help users start and stop time tracking without manual intervention.
Three automation triggers are supported:
Automations can trigger different actions:
Each automation includes:
The API provides endpoints to:
Retrieves a paginated list of automations filtered by optional parameters. Automations can be filtered by project and status. Users will only see automations they have access to based on their permissions.
projectId | string Example: projectId=proj123 Filter automations by project ID |
status | string Enum: "enabled" "disabled" Example: status=enabled Filter automations by status |
sort | string Default: "created" Enum: "project" "created" Example: sort=created Field to sort by |
order | string Default: "desc" Enum: "asc" "desc" Example: order=desc Sort order (ascending or descending) |
page | integer <int32> Default: 1 Example: page=1 Page number for pagination |
limit | integer <int32> Default: 20 Example: limit=20 Maximum number of items per page |
{- "items": [
- {
- "id": "auto123",
- "project": {
- "id": "proj123",
- "title": "Office Project"
}, - "typeId": 0,
- "action": 0,
- "enabled": true,
- "shared": false,
- "address": "123 Main St",
- "latitude": 47.6062,
- "longitude": -122.3321,
- "radius": 200,
- "member": {
- "uid": "user123",
- "firstname": "John",
- "lastname": "Doe"
}, - "name": "Office (200m)"
}
], - "count": 1,
- "sort": "created",
- "order": "desc",
- "page": 1,
- "limit": 20
}
Creates a new automation for automatic time tracking based on location (geofence), WLAN detection, or beacon detection. The type of automation is determined by the typeId field. Based on the typeId, different fields are required. For geofence (typeId=0): address, latitude, longitude, and radius are required. For WLAN detection (typeId=1): ssid is required. For beacon detection (typeId=2): beaconUUID is required.
Automation object to be created
projectId | string |
typeId | integer <int32> |
action | integer <int32> |
enabled | boolean |
shared | boolean |
ssid | string |
address | string |
latitude | number <double> |
longitude | number <double> |
radius | number <double> |
beaconUUID | string |
{- "projectId": "string",
- "typeId": 0,
- "action": 0,
- "enabled": true,
- "shared": true,
- "ssid": "string",
- "address": "string",
- "latitude": 0.1,
- "longitude": 0.1,
- "radius": 0.1,
- "beaconUUID": "string"
}
{- "id": "auto123",
- "project": {
- "id": "proj123",
- "title": "Office Project"
}, - "typeId": 0,
- "action": 0,
- "enabled": true,
- "shared": false,
- "address": "123 Main St",
- "latitude": 47.6062,
- "longitude": -122.3321,
- "radius": 200,
- "member": {
- "uid": "user123",
- "firstname": "John",
- "lastname": "Doe"
}, - "name": "Office (200m)"
}
Retrieves a specific automation by its unique identifier. Users can only retrieve automations they have access to based on their permissions.
id required | string Example: auto123 Unique identifier of the automation |
{- "id": "auto123",
- "project": {
- "id": "proj123",
- "title": "Office Project"
}, - "typeId": 0,
- "action": 0,
- "enabled": true,
- "shared": false,
- "address": "123 Main St",
- "latitude": 47.6062,
- "longitude": -122.3321,
- "radius": 200,
- "member": {
- "uid": "user123",
- "firstname": "John",
- "lastname": "Doe"
}, - "name": "Office (200m)"
}
Updates an existing automation identified by its unique ID. Only specific fields can be updated, and the appropriate fields must be provided based on the automation type (geofence, WLAN, or beacon).
id required | string Example: auto123 Unique identifier of the automation to update |
Updated automation object
projectId | string |
typeId | integer <int32> |
action | integer <int32> |
enabled | boolean |
shared | boolean |
ssid | string |
address | string |
latitude | number <double> |
longitude | number <double> |
radius | number <double> |
beaconUUID | string |
deleted | boolean |
{- "projectId": "string",
- "typeId": 0,
- "action": 0,
- "enabled": true,
- "shared": true,
- "ssid": "string",
- "address": "string",
- "latitude": 0.1,
- "longitude": 0.1,
- "radius": 0.1,
- "beaconUUID": "string",
- "deleted": true
}
{- "id": "auto123",
- "project": {
- "id": "proj123",
- "title": "Office Project"
}, - "typeId": 0,
- "action": 0,
- "enabled": true,
- "shared": true,
- "address": "123 Main St",
- "latitude": 47.6062,
- "longitude": -122.3321,
- "radius": 300,
- "member": {
- "uid": "user123",
- "firstname": "John",
- "lastname": "Doe"
}, - "name": "Office (300m)"
}
Deletes an automation by marking it as deleted (soft delete). Users can only delete automations they have created or have permission to manage.
id required | string Example: auto123 Unique identifier of the automation to delete |
Advanced search for automations with multiple filter criteria. Provides a more comprehensive search capability than the list endpoint, allowing filtering by project IDs, type, status, and pagination parameters.
Search parameters for automations
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
projectId | string |
status | string |
type | integer <int32> |
projectIds | Array of strings |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "projectId": "string",
- "status": "string",
- "type": 0,
- "projectIds": [
- "string"
], - "offset": 0
}
{- "items": [
- {
- "id": "auto123",
- "project": {
- "id": "proj123",
- "title": "Office Project"
}, - "typeId": 0,
- "action": 0,
- "enabled": true,
- "shared": false,
- "address": "123 Main St",
- "latitude": 47.6062,
- "longitude": -122.3321,
- "radius": 200,
- "member": {
- "uid": "user123",
- "firstname": "John",
- "lastname": "Doe"
}, - "name": "Office (200m)"
}
], - "count": 1,
- "projectIds": [
- "proj123"
], - "type": 0,
- "status": "enabled",
- "sort": "created",
- "order": "desc",
- "page": 1,
- "limit": 20
}
The Todos API provides a lightweight task management system for planning and tracking work to be done. Todos serve as organizational units that can be associated with time tracking tasks when work is performed.
Each todo includes:
Todos follow a simple workflow:
Todos integrate with time tracking:
The API supports project planning:
Retrieves a paginated list of todos with optional filtering by project and status. Results can be sorted and ordered according to specified parameters.
projectId | string Example: projectId=proj123 Filter todos by project identifier |
status | string Default: "open" Enum: "all" "open" "closed" Filter todos by status |
sort | string Default: "alpha" Enum: "alpha" "dueDate" "created" "status" Field to sort by |
order | string Default: "asc" Enum: "asc" "desc" Sort direction |
page | integer <int64> >= 1 Default: 1 Page number (1-based pagination) |
limit | integer <int64> [ 1 .. 100 ] Default: 20 Number of items per page |
[- {
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}
]
Creates a new todo item with the provided details. Required fields include name and projectId. Optional fields include description, status, dueDate, assignedUsers, and estimated time.
Todo item details to create
projectId | string |
name | string |
description | string |
status | integer <int32> |
dueDate | string |
assignedUsers | string |
estimatedHours | integer <int32> |
estimatedMinutes | integer <int32> |
{- "projectId": "string",
- "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0
}
{- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}
Retrieves detailed information about a specific todo item by its unique identifier. The response includes all todo properties as well as related statistics like time spent.
id required | string Example: todo123 Unique identifier of the 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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}
Updates an existing todo item with the provided details. All fields in the request body will overwrite the existing values. Fields not included in the request will remain unchanged.
id required | string Example: todo123 Unique identifier of the todo to update |
Updated todo details
name | string |
description | string |
status | integer <int32> |
dueDate | string |
assignedUsers | string |
estimatedHours | integer <int32> |
estimatedMinutes | integer <int32> |
deleted | boolean |
{- "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "deleted": true
}
{- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}
Soft-deletes a todo item by its identifier. This operation marks the todo as deleted in the database but does not physically remove it. Associated tasks will have their todo reference cleared.
id required | string Example: todo123 Unique identifier of the todo to delete |
Performs an advanced search for todos based on multiple criteria specified in the request body. This endpoint supports more complex filtering than the standard list endpoint, including filtering by multiple projects and assigned users.
Search parameters including filters, sorting options, and pagination
search | string |
sort | string |
order | string |
count | integer <int32> |
page | integer <int32> |
limit | integer <int32> |
projectId | string |
status | string |
assignedUsers | string |
projectIds | Array of strings |
offset | integer <int32> |
{- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "projectId": "string",
- "status": "string",
- "assignedUsers": "string",
- "projectIds": [
- "string"
], - "offset": 0
}
{- "items": [
- {
- "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,
- "salaryVisibility": 0,
- "salary": 0.1,
- "team": {
- "id": "string",
- "organization": {
- "id": "string",
- "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "subscription": {
- "id": "string",
- "user": "string",
- "expires": 0,
- "status": 0,
- "plan": 0,
- "licenses": 0,
- "paymentOption": "string",
- "business": "string",
- "email": "string",
- "firstname": "string",
- "lastname": "string",
- "vatId": "string",
- "displayName": "string",
- "street": "string",
- "city": "string",
- "state": "string",
- "zip": "string",
- "country": "string",
- "countryIso": "string",
- "language": "string",
- "includeTaxForBusiness": true,
- "activated": true,
- "cancellationOffer": true,
- "subscriptionActive": true,
- "subscriptionCancelled": true,
- "subscriptionInactive": true,
- "startedTestimonial": "2019-08-24T14:15:22Z",
- "activationDate": "2019-08-24T14:15:22Z",
- "cancellationDate": "2019-08-24T14:15:22Z",
- "permissionAdmin": true,
- "valid": true,
- "expired": true,
- "validAndActivated": true,
- "payPalPayment": true,
- "stripePayment": true,
- "invoicePayment": true,
- "googlePlayPayment": true,
- "currency": "string",
- "businessCustomer": true,
- "euCustomer": true,
- "eu": true,
- "at": true,
- "ch": true,
- "uk": true,
- "product": "string",
- "licenseQuantity": 0,
- "active": true,
- "trial": true,
- "cancelled": true,
- "member": true,
- "planBusiness": true,
- "planPro": true,
- "planPlus": true,
- "planBasic": true,
- "monthlyPlan": true,
- "yearlyPlan": true,
- "organization": true
}, - "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "invoicing": true,
- "billing": true,
- "admin": true
}
}, - "name": "string",
- "description": "string",
- "image": "string",
- "color": 0,
- "projectSalaryVisibility": 0,
- "user": "string",
- "lastUpdate": 0,
- "created": 0,
- "deleted": true,
- "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "projects": 0,
- "members": 0,
- "projectSalaryVisible": true
}, - "permission": {
- "role": "string",
- "owner": true,
- "manager": true,
- "member": true,
- "managerOrOwner": true
}, - "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1,
- "titleAndClient": "string",
- "salaryVisible": true
}, - "name": "string",
- "description": "string",
- "status": 0,
- "dueDate": "string",
- "assignedUsers": "string",
- "estimatedHours": 0,
- "estimatedMinutes": 0,
- "duration": 0,
- "durationBreak": 0,
- "salaryTotal": 0.1,
- "salaryBreak": 0.1,
- "expenses": 0.1,
- "expensesPaid": 0.1,
- "mileage": 0.1
}
], - "params": {
- "search": "string",
- "sort": "string",
- "order": "string",
- "count": 0,
- "page": 0,
- "limit": 0,
- "projectId": "string",
- "status": "string",
- "assignedUsers": "string",
- "projectIds": [
- "string"
], - "offset": 0
}, - "todoStatistic": {
- "open": 0,
- "closed": 0
}
}