Skip to content

daniel-buchanan/TogglAPI.NetStandard

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TogglAPI.NetStandard - the C# library for the Toggl API

Public Toggl API. Note: We use BasicAuth in a specific way. By the standard you provide Authentication header with base64(user_name:password) as a credential. In our case it will be base64(user_name:api_token).

This C# SDK is automatically generated by the Swagger Codegen project:

  • API version: 9
  • SDK version: 1.0.0
  • Build package: io.swagger.codegen.languages.CSharpClientCodegen

Frameworks supported

  • .NET 4.0 or later
  • Windows Phone 7.1 (Mango)

Dependencies

The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages:

Install-Package RestSharp
Install-Package Newtonsoft.Json
Install-Package JsonSubTypes

NOTE: RestSharp versions greater than 105.1.0 have a bug which causes file uploads to fail. See RestSharp#742

Installation

Run the following command to generate the DLL

  • [Mac/Linux] /bin/sh build.sh
  • [Windows] build.bat

Then include the DLL (under the bin folder) in the C# project, and use the namespaces:

using TogglAPI.NetStandard.Api;
using TogglAPI.NetStandard.Client;
using TogglAPI.NetStandard.Model;

Packaging

A .nuspec is included with the project. You can follow the Nuget quickstart to create and publish packages.

This .nuspec uses placeholders from the .csproj, so build the .csproj directly:

nuget pack -Build -OutputDirectory out TogglAPI.NetStandard.csproj

Then, publish to a local feed or other host and consume the new package via Nuget as usual.

Getting Started

using System;
using System.Diagnostics;
using TogglAPI.NetStandard.Api;
using TogglAPI.NetStandard.Client;
using TogglAPI.NetStandard.Model;

namespace Example
{
    public class Example
    {
        public void main()
        {

            // Configure HTTP basic authorization: BasicAuth
            Configuration.Default.Username = "YOUR_USERNAME";
            Configuration.Default.Password = "YOUR_PASSWORD";

            var apiInstance = new DefaultApi();
            var organizationId = 56;  // int? | Numeric ID of the organization.
            var groupId = 56;  // int? | Numeric ID of the group.

            try
            {
                // Deletes group
                string result = apiInstance.DeleteOrganizationGroup(organizationId, groupId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.DeleteOrganizationGroup: " + e.Message );
            }

        }
    }
}

Documentation for API Endpoints

All URIs are relative to https://localhost:8080/api/v9

Class Method HTTP request Description
DefaultApi DeleteOrganizationGroup DELETE /organizations/{organization_id}/groups/{group_id} Deletes group
AlertsApi DeleteAlerts DELETE /workspaces/{workspace_id}/alerts/{alert_id} Alerts
AlertsApi GetAlerts GET /workspaces/{workspace_id}/alerts Alerts
AlertsApi PostAlerts POST /workspaces/{workspace_id}/alerts Alerts
AlertsApi PutAlerts PUT /workspaces/{workspace_id}/alerts/{alert_id} Alerts
ApprovalsApi DeleteTimesheetSetups DELETE /workspaces/{workspace_id}/timesheet_setups/{setup_id} Delete a timesheet setup
ApprovalsApi GetTimesheetSetups GET /workspaces/{workspace_id}/timesheet_setups Get timesheet setups
ApprovalsApi GetWorkspaceTimesheetHoursHandler POST /workspaces/{workspace_id}/timesheets/hours Get timesheets hours
ApprovalsApi GetWorkspaceTimesheetTimeEntriesHandler GET /workspaces/{workspace_id}/timesheets/{setup_id}/{start_date} Get timesheet time entries
ApprovalsApi GetWorkspaceTimesheetsHandler GET /workspaces/{workspace_id}/timesheets Get timesheets
ApprovalsApi PostTimesheetSetups POST /workspaces/{workspace_id}/timesheet_setups Create a timesheet setup
ApprovalsApi PutTimesheetSetups POST /workspaces/{workspace_id}/timesheet_setups/{setup_id} Update a timesheet setup
ApprovalsApi PutWorkspaceTimesheetsHandler PUT /workspaces/{workspace_id}/timesheets/{setup_id}/{start_date} Update timesheets
AuthApi DesktopLoginGet GET /desktop_login Get desktop login token
AuthApi DesktopLoginTokensPost POST /desktop_login_tokens Post desktop login token
AuthenticationApi GetSaml2LoginUrl GET /auth/saml2/login SAML2 Identity Provider URL
AuthenticationApi GetWorkspaceSso GET /workspaces/{workspace_id}/sso Workspace SSO configuration
AuthenticationApi MeSessionsDelete DELETE /me/sessions Delete session
AuthenticationApi MeSessionsPost POST /me/sessions Create session
AuthenticationApi PostEnableSso POST /me/enable_sso Confirm SSO enabling for user account
AuthenticationApi PostResetToken POST /me/reset_token ResetToken
AuthenticationApi PostSaml2Callback POST /auth/saml2/login/{workspace_id} SAML2 Identity Provider Callback
AuthenticationApi PostSignup POST /signup Signup
AvatarsApi DeleteAvatars DELETE /avatars Avatars
AvatarsApi PostAvatars POST /avatars Avatars
AvatarsApi PostUseGravatar POST /avatars/use_gravatar UseGravatar
CalendarApi IntegrationsCalendarCalendarsSelectedGet GET /integrations/calendar/calendars/selected Get all calendars for a given user.
CalendarApi IntegrationsCalendarCallbackProviderGet GET /integrations/calendar/callback/{provider} Callback for provider OAuth setup.
CalendarApi IntegrationsCalendarEventsDetailsSuggestionPost POST /integrations/calendar/events/details-suggestion Get details suggestion for given events.
CalendarApi IntegrationsCalendarEventsEventIdDetailsSuggestionGet GET /integrations/calendar/events/{event_id}/details-suggestion Get details suggestion for a given event.
CalendarApi IntegrationsCalendarEventsGet GET /integrations/calendar/events Get all events for the caller user.
CalendarApi IntegrationsCalendarEventsUpdatePost POST /integrations/calendar/events/update Update all events from selected calendars for a user.
CalendarApi IntegrationsCalendarGet GET /integrations/calendar Get all integrations a user has.
CalendarApi IntegrationsCalendarIntegrationIdCalendarsCalendarIdPatch PATCH /integrations/calendar/{integration_id}/calendars/{calendar_id} Sets whether a calendar is or not selected by the user.
CalendarApi IntegrationsCalendarIntegrationIdCalendarsGet GET /integrations/calendar/{integration_id}/calendars Get all calendars for a given integration.
CalendarApi IntegrationsCalendarIntegrationIdCalendarsIdCalendarEventsGet GET /integrations/calendar/{integration_id}/calendars/{id_calendar}/events (DEPRECATED) Get all events for a given calendar in a given integration.
CalendarApi IntegrationsCalendarIntegrationIdCalendarsUpdatePost POST /integrations/calendar/{integration_id}/calendars/update Updates calendar data according to provider API.
CalendarApi IntegrationsCalendarIntegrationIdDelete DELETE /integrations/calendar/{integration_id} Delete a given integration.
CalendarApi IntegrationsCalendarSetupGet GET /integrations/calendar/setup Get URL for setting up a calendar integration with given provider.
ClientsApi ArchiveClient POST /workspaces/{workspace_id}/clients/{client_id}/archive Archives client
ClientsApi DeleteWorkspaceClients DELETE /workspaces/{workspace_id}/clients/{client_id} Delete client
ClientsApi GetWorkspaceClient GET /workspaces/{workspace_id}/clients/{client_id} Load client from ID
ClientsApi GetWorkspaceClients GET /workspaces/{workspace_id}/clients List clients
ClientsApi PostWorkspaceClients POST /workspaces/{workspace_id}/clients Create client
ClientsApi PutWorkspaceClients PUT /workspaces/{workspace_id}/clients/{client_id} Change client
ClientsApi RestoreClient POST /workspaces/{workspace_id}/clients/{client_id}/restore Restores client and related projects.
CountriesApi GetCountries GET /countries Countries
CountriesApi GetCountriesCountryIdSubdivisions GET /countries/{country_id}/subdivisions CountrySubdivisions
DashboardApi GetWorkspaceAllActivities GET /workspaces/{workspace_id}/dashboard/all_activity Get last activity for every workspace user
DashboardApi GetWorkspaceMostActive GET /workspaces/{workspace_id}/dashboard/most_active Get most active users
DashboardApi GetWorkspaceTopActivity GET /workspaces/{workspace_id}/dashboard/top_activity Get top activities
DefaultApi ReportsApiV3WorkspaceWorkspaceIdComparativePost POST /reports/api/v3/workspace/{workspace_id}/comparative Load comparative report
DefaultApi ReportsApiV3WorkspaceWorkspaceIdDataTrendsClientsPost POST /reports/api/v3/workspace/{workspace_id}/data_trends/clients Load clients' data trends
DefaultApi ReportsApiV3WorkspaceWorkspaceIdDataTrendsProjectsPost POST /reports/api/v3/workspace/{workspace_id}/data_trends/projects Load projects' data trends
DefaultApi ReportsApiV3WorkspaceWorkspaceIdDataTrendsUsersPost POST /reports/api/v3/workspace/{workspace_id}/data_trends/users Load users' data trends
DefaultApi ReportsApiV3WorkspaceWorkspaceIdProfitabilityProjectsPost POST /reports/api/v3/workspace/{workspace_id}/profitability/projects Load profitability projects report
DetailedReportsApi ReportsApiV3WorkspaceWorkspaceIdSearchTimeEntriesExtensionPost POST /reports/api/v3/workspace/{workspace_id}/search/time_entries.{extension} Export detailed report
DetailedReportsApi ReportsApiV3WorkspaceWorkspaceIdSearchTimeEntriesPdfPost POST /reports/api/v3/workspace/{workspace_id}/search/time_entries.pdf Export detailed report
DetailedReportsApi ReportsApiV3WorkspaceWorkspaceIdSearchTimeEntriesPost POST /reports/api/v3/workspace/{workspace_id}/search/time_entries Search time entries
DetailedReportsApi ReportsApiV3WorkspaceWorkspaceIdSearchTimeEntriesTotalsPost POST /reports/api/v3/workspace/{workspace_id}/search/time_entries/totals Load totals detailed report
ExportsApi GetMeExport GET /me/export Get a list of objects to be downloaded
ExportsApi GetMeExportDataUuidZip GET /me/export/data/{uuid}.zip Get the zip file with download requests
ExportsApi GetWorkspaceExports GET /workspaces/{workspace_id}/exports Get a list with the workspace download requests
ExportsApi GetWorkspaceExportsDataUuidZip GET /workspaces/{workspace_id}/exports/data/{uuid}.zip Get the zip file with workspace download requests
ExportsApi InsightsApiV1WorkspaceWorkspaceIdProfitabilityEmployeesExtensionPost POST /insights/api/v1/workspace/{workspace_id}/profitability/employees.{extension} Export employee profitability insights
ExportsApi InsightsApiV1WorkspaceWorkspaceIdProfitabilityProjectsExtensionPost POST /insights/api/v1/workspace/{workspace_id}/profitability/projects.{extension} Export profitability project insights
ExportsApi InsightsApiV1WorkspaceWorkspaceIdTrendsProjectsExtensionPost POST /insights/api/v1/workspace/{workspace_id}/trends/projects.{extension} Export projects data trends
ExportsApi PostMeExport POST /me/export Post an object which data to be downloaded
ExportsApi PostWorkspaceExports POST /workspaces/{workspace_id}/exports Post a list with the workspace to be downloaded
ExportsApi ReportsApiV3SharedReportTokenCsvPost POST /reports/api/v3/shared/{report_token}.csv Export CSV for saved report
ExportsApi ReportsApiV3SharedReportTokenPdfPost POST /reports/api/v3/shared/{report_token}/pdf Export saved report in pdf format
ExportsApi ReportsApiV3SharedReportTokenXlsxPost POST /reports/api/v3/shared/{report_token}.xlsx Export XSLX saved report
ExportsApi ReportsApiV3WorkspaceWorkspaceIdSearchTimeEntriesExtensionPost POST /reports/api/v3/workspace/{workspace_id}/search/time_entries.{extension} Export detailed report
ExportsApi ReportsApiV3WorkspaceWorkspaceIdSearchTimeEntriesPdfPost POST /reports/api/v3/workspace/{workspace_id}/search/time_entries.pdf Export detailed report
ExportsApi ReportsApiV3WorkspaceWorkspaceIdSummaryTimeEntriesExtensionPost POST /reports/api/v3/workspace/{workspace_id}/summary/time_entries.{extension} Export summary report
ExportsApi ReportsApiV3WorkspaceWorkspaceIdSummaryTimeEntriesPdfPost POST /reports/api/v3/workspace/{workspace_id}/summary/time_entries.pdf Export summary report
ExportsApi ReportsApiV3WorkspaceWorkspaceIdWeeklyTimeEntriesCsvPost POST /reports/api/v3/workspace/{workspace_id}/weekly/time_entries.csv Export weekly report
ExportsApi ReportsApiV3WorkspaceWorkspaceIdWeeklyTimeEntriesPdfPost POST /reports/api/v3/workspace/{workspace_id}/weekly/time_entries.pdf Export weekly report
FavoritesApi CreateFavorite POST /me/favorites Create a favorite
FavoritesApi DeleteFavorite DELETE /me/favorites/{favorite_id} Deletes a given favorite
FavoritesApi GetFavorites GET /me/favorites Get a list of favorites
FavoritesApi PostFavoritesSuggestions POST /me/favorites/suggestions Generates and returns a list of suggested favorites.
FavoritesApi UpdateFavorite PUT /me/favorites Update an array of favorites
FeedbackApi PostFeedbackWeb POST /feedback/web FeedbackWeb
FeedbackApi PostUnifiedFeedback POST /feedback Feedback
GoalsApi GoalsGoalIdStatsGet GET /goals/{goal_id}/stats Get stats for a goal
GoalsApi GoalsInsightPost POST /goals/insight Get a insight
GoalsApi MeGoalsGet GET /me/goals Get a list of user goals
GoalsApi WorkspacesWorkspaceIdGoalsGet GET /workspaces/{workspace_id}/goals Get a list of goals
GoalsApi WorkspacesWorkspaceIdGoalsGoalIdDelete DELETE /workspaces/{workspace_id}/goals/{goal_id} Delete one goal
GoalsApi WorkspacesWorkspaceIdGoalsGoalIdGet GET /workspaces/{workspace_id}/goals/{goal_id} Get one goal
GoalsApi WorkspacesWorkspaceIdGoalsGoalIdPut PUT /workspaces/{workspace_id}/goals/{goal_id} Update a Goal
GoalsApi WorkspacesWorkspaceIdGoalsPost POST /workspaces/{workspace_id}/goals Create a Goal
GroupsApi DeleteOrganizationGroup DELETE /organizations/{organization_id}/groups/{group_id} Deletes group
GroupsApi DeleteProjectGroup DELETE /workspaces/{workspace_id}/project_groups/{project_group_id} Remove project group.
GroupsApi DeleteWorkspaceGroup DELETE /workspaces/{workspace_id}/groups/{group_id} Delete group
GroupsApi GetOrganizationGroups GET /organizations/{organization_id}/groups List of groups in organization with user and workspace assignments
GroupsApi GetOrganizationWorkspacesGroups GET /organizations/{organization_id}/workspaces/{workspace_id}/groups List of groups in a workspace within an organization with user assignments.
GroupsApi GetProjectGroups GET /workspaces/{workspace_id}/project_groups Get workspace project groups.
GroupsApi GetWorkspaceGroups GET /workspaces/{workspace_id}/groups Get workspace groups
GroupsApi PatchOrganizationGroup PATCH /organizations/{organization_id}/groups/{group_id} Patch group
GroupsApi PostOrganizationGroup POST /organizations/{organization_id}/groups Create group
GroupsApi PostProjectGroup POST /workspaces/{workspace_id}/project_groups Adds group to project.
GroupsApi PostWorkspaceGroup POST /workspaces/{workspace_id}/groups Create group
GroupsApi PutOrganizationGroup PUT /organizations/{organization_id}/groups/{group_id} Edit group
GroupsApi PutOrganizationWorkspacesAssignments PUT /organizations/{organization_id}/workspaces/{workspace_id}/assignments Change assignments of users within a workspace.
GroupsApi PutWorkspaceGroup PUT /workspaces/{workspace_id}/groups/{group_id} Update group
IcalApi GetIcal GET /ical/workspace_user/{token} Ical file
IcalApi PostWorkspaceIcalReset POST /workspaces/{workspace_id}/ical/reset Reset iCal token
IcalApi PostWorkspaceIcalToggle POST /workspaces/{workspace_id}/ical/toggle Toggle the iCal token
InsightsApi InsightsApiV1WorkspaceWorkspaceIdDataTrendsProjectsPost POST /insights/api/v1/workspace/{workspace_id}/data_trends/projects Load projects' data trends
InsightsApi InsightsApiV1WorkspaceWorkspaceIdProfitabilityEmployeesExtensionPost POST /insights/api/v1/workspace/{workspace_id}/profitability/employees.{extension} Export employee profitability insights
InsightsApi InsightsApiV1WorkspaceWorkspaceIdProfitabilityProjectsExtensionPost POST /insights/api/v1/workspace/{workspace_id}/profitability/projects.{extension} Export profitability project insights
InsightsApi InsightsApiV1WorkspaceWorkspaceIdTrendsProjectsExtensionPost POST /insights/api/v1/workspace/{workspace_id}/trends/projects.{extension} Export projects data trends
InvitationsApi GetInvitations GET /invitations/{invitation_code} Get an invitation
InvitationsApi PostOrganizationAcceptInvitation POST /organizations/invitations/{invitation_code}/accept Accepts invitation
InvitationsApi PostOrganizationInvitation POST /organizations/{organization_id}/invitations Creates a new invitation for the user
InvitationsApi PostRejectInvitation POST /organizations/invitations/{invitation_code}/reject Rejects invitation
InvitationsApi PutInvitation PUT /organizations/{organization_id}/invitations/{invitation_code}/resend Resends user their invitation
KeysApi GetKeys GET /keys get keys
MeApi DeletePushServices DELETE /me/push_services PushServices
MeApi GetClients GET /me/clients Clients
MeApi GetLostPassword GET /me/lost_passwords LostPassword
MeApi GetMe GET /me Me
MeApi GetMeFeatures GET /me/features Features
MeApi GetMeFlags GET /me/flags Flags
MeApi GetMeLocation GET /me/location User's last known location
MeApi GetMeNotifications GET /me/notifications Notifications
MeApi GetMeProjects GET /me/projects Projects
MeApi GetMeProjectsPaginated GET /me/projects/paginated ProjectsPaginated
MeApi GetMeTimesheets GET /me/timesheets User's Timesheets
MeApi GetMeTrackReminders GET /me/track_reminders TrackReminders
MeApi GetOrganizations GET /me/organizations Organizations that a user is part of
MeApi GetPushServices GET /me/push_services PushServices
MeApi GetTags GET /me/tags Tags
MeApi GetTasks GET /me/tasks Tasks
MeApi GetWebTimer GET /me/web-timer WebTimer
MeApi GetWorkspaces GET /me/workspaces Workspaces
MeApi MeLoggedGet GET /me/logged Logged
MeApi PostCloseAccount POST /me/close_account CloseAccount
MeApi PostLostPassword POST /me/lost_passwords LostPassword
MeApi PostLostPasswordConfirm POST /me/lost_passwords/confirm LostPassword conformation
MeApi PostMeAcceptTos POST /me/accept_tos AcceptTOS
MeApi PostMeDisableProductEmails POST /me/disable_product_emails/{disable_code} Disable product emails
MeApi PostMeDisableWeeklyReport POST /me/disable_weekly_report/{weekly_report_code} Disable weekly report
MeApi PostMeFlags POST /me/flags Flags
MeApi PostPushServices POST /me/push_services PushServices
MeApi PutMe PUT /me Me
MeApi PutNotifications POST /me/notifications/{notification_id}/seen Notifications
MobileApi PostMobileFeedback POST /mobile/feedback MobileFeedback
OrganizationRolesApi RolesProductIdOrganizationIdGet GET /roles/{product_id}/{organization_id} Get organization roles
OrganizationRolesApi RolesProductIdOrganizationIdPost POST /roles/{product_id}/{organization_id} Create organization role
OrganizationRolesApi RolesProductIdOrganizationIdRoleIdDelete DELETE /roles/{product_id}/{organization_id}/{role_id} Delete organization role
OrganizationRolesApi RolesProductIdOrganizationIdRoleIdDuplicatePost POST /roles/{product_id}/{organization_id}/{role_id}/duplicate Duplicate organization role
OrganizationRolesApi RolesProductIdOrganizationIdRoleIdGet GET /roles/{product_id}/{organization_id}/{role_id} Get specific organization role
OrganizationRolesApi RolesProductIdOrganizationIdRoleIdPut PUT /roles/{product_id}/{organization_id}/{role_id} Update organization role
OrganizationsApi DeleteOrganizationGroup DELETE /organizations/{organization_id}/groups/{group_id} Deletes group
OrganizationsApi DeleteOrganizationUsersLeave DELETE /organizations/{organization_id}/users/leave Leaves organization
OrganizationsApi GetOrganization GET /organizations/{organization_id} Organization data
OrganizationsApi GetOrganizationGroups GET /organizations/{organization_id}/groups List of groups in organization with user and workspace assignments
OrganizationsApi GetOrganizationOwner GET /organizations/{organization_id}/owner Get owner of the organization
OrganizationsApi GetOrganizationRoles GET /organizations/{organization_id}/roles Organization roles.
OrganizationsApi GetOrganizationSegmentation GET /organizations/{organization_id}/segmentation Organization segmentation data
OrganizationsApi GetOrganizationUsers GET /organizations/{organization_id}/users List of users in organization
OrganizationsApi GetOrganizationUsersDetailed GET /organizations/{organization_id}/users/detailed List of users in organization with details
OrganizationsApi GetOrganizationWorkspacesGroups GET /organizations/{organization_id}/workspaces/{workspace_id}/groups List of groups in a workspace within an organization with user assignments.
OrganizationsApi GetOrganizationWorkspacesStatistics GET /organizations/{organization_id}/workspaces/statistics Statistics for all workspaces in the organization
OrganizationsApi GetOrganizationsPaymentsRecords GET /organizations/{organization_id}/payment_records OrganizationsPaymentRecords
OrganizationsApi GetOrganizationsPlans GET /organizations/{organization_id}/plans OrganizationsPlans
OrganizationsApi GetOrganizationsPlans_0 GET /organizations/{organization_id}/plans/{plan_id} OrganizationsPlan
OrganizationsApi PatchOrganizationGroup PATCH /organizations/{organization_id}/groups/{group_id} Patch group
OrganizationsApi PatchOrganizationUsers PATCH /organizations/{organization_id}/users Apply changes in bulk to users in an organization
OrganizationsApi PostOrganization POST /organizations Creates a new organization
OrganizationsApi PostOrganizationAcceptInvitation POST /organizations/invitations/{invitation_code}/accept Accepts invitation
OrganizationsApi PostOrganizationGroup POST /organizations/{organization_id}/groups Create group
OrganizationsApi PostOrganizationInvitation POST /organizations/{organization_id}/invitations Creates a new invitation for the user
OrganizationsApi PostOrganizationWorkspaces POST /organizations/{organization_id}/workspaces Create a new workspace.
OrganizationsApi PutOrganization PUT /organizations/{organization_id} Updates an existing organization
OrganizationsApi PutOrganizationGroup PUT /organizations/{organization_id}/groups/{group_id} Edit group
OrganizationsApi PutOrganizationSegmentation PUT /organizations/{organization_id}/segmentation Organization segmentation data
OrganizationsApi PutOrganizationUsers PUT /organizations/{organization_id}/users/{organization_user_id} Changes a single organization-user
OrganizationsApi PutOrganizationWorkspacesAssignments PUT /organizations/{organization_id}/workspaces/{workspace_id}/assignments Change assignments of users within a workspace.
OrganizationsOwnerApi GetOwnershipTransfer GET /organizations/{organization_id}/owner/transfer/{transfer_id} Returns single organization transfer in the organization
OrganizationsOwnerApi GetOwnershipTransfers GET /organizations/{organization_id}/owner/transfer Returns list of organization transfers made in the organization
OrganizationsOwnerApi PostOwnershipTransfer POST /organizations/{organization_id}/owner/transfer Creates new ownership transfer process
OrganizationsOwnerApi PostOwnershipTransferActions POST /organizations/{organization_id}/owner/transfer/{transfer_id}/{action} Updates transfer process and emails stakeholders
OrganizationsSubscriptionApi GetOrganizationPurchaseOrderPdf GET /organizations/{organization_id}/subscription/purchase_orders/{purchase_order_uid}.pdf PurchaseOrderPdf
OrganizationscustomerApi GetOrganizationCustomer GET /organizations/{organization_id}/customer Customer
OrganizationscustomerApi GetUnifiedCustomer GET /organizations/{organization_id}/subscription/customer Retrieve unified customer
OrganizationscustomerApi PostOrganizationCustomer POST /organizations/{organization_id}/customer/contact_detail ContactDetails
OrganizationscustomerApi PostUnifiedCustomer POST /organizations/{organization_id}/subscription/customer Create unified customer
OrganizationscustomerApi PutUnifiedCustomer PUT /organizations/{organization_id}/subscription/customer Update unified customer
OrganizationssubscriptionApi PostOrganizationSubscriptionCalculate POST /organizations/{organization_id}/subscription/calculate SubscriptionCalculation
OrganizationssubscriptionbillingApi CreateBillingPortalSession POST /organizations/{organization_id}/subscription/billing_portal Create a billing portal session in the unified subscription system
OrganizationssubscriptioncheckoutApi CreateSubscriptionCheckoutSession POST /organizations/{organization_id}/subscription/checkout_session Create a subscription checkout session in the unified subscription system
OrganizationssubscriptionpromocodeApi DeletePromotionCode DELETE /organizations/{organization_id}/subscription/promocode Removes any discount (promotion code) applied to the organization's customer
OrganizationssubscriptionpromocodeApi PostPromotionCode POST /organizations/{organization_id}/subscription/promocode Applies the given promotion code to organization's customer
OrganizationssubscriptionsetupIntentApi CreateSetupIntent POST /organizations/{organization_id}/subscription/setup_intent Create a setup intent for collecting customer's payment method
PermissionsApi PermissionsProductIdGet GET /permissions/{product_id} Get permissions
PreferencesApi GetPreferences GET /me/preferences Preferences for the current user
PreferencesApi GetPreferencesClient GET /me/preferences/{client} Preferences for an specific client of the current user
PreferencesApi GetWorkspacePreferences GET /workspaces/{workspace_id}/preferences Get workspace preferences
PreferencesApi PostPreferences POST /me/preferences Update the preferences for the current user
PreferencesApi PostPreferencesClient POST /me/preferences/{client} Update the preferences for an specific client of the current user
PreferencesApi PostWorkspacePreferences POST /workspaces/{workspace_id}/preferences Get workspace preferences
ProjectsApi DeleteWorkspaceProject DELETE /workspaces/{workspace_id}/projects/{project_id} WorkspaceProject
ProjectsApi DeleteWorkspaceProjectUsers DELETE /workspaces/{workspace_id}/project_users/{project_user_id} Delete a project user from workspace projects users
ProjectsApi GetProjects GET /workspaces/{workspace_id}/projects WorkspaceProjects
ProjectsApi GetProjectsTemplates GET /workspaces/{workspace_id}/projects/templates WorkspaceProjectsTemplates
ProjectsApi GetSharedProject GET /shared-project/{hash}/project SharedProject
ProjectsApi GetWorkspaceProjectPeriods GET /workspaces/{workspace_id}/projects/{project_id}/periods Get Recurring Project Periods
ProjectsApi GetWorkspaceProjectUsers GET /workspaces/{workspace_id}/project_users Get workspace projects users
ProjectsApi PatchWorkspaceProjectUsersIds PATCH /workspaces/{workspace_id}/project_users/{project_user_ids} Patch project users from workspace
ProjectsApi PatchWorkspaceProjects PATCH /workspaces/{workspace_id}/projects/{project_ids} WorkspaceProjects
ProjectsApi PostWorkspaceProjectCreate POST /workspaces/{workspace_id}/projects WorkspaceProjects
ProjectsApi PostWorkspaceProjectUsers POST /workspaces/{workspace_id}/project_users Add an user into workspace projects users
ProjectsApi PutSharedProjectTimeEntries GET /shared-project/{hash}/time-entries SharedProjectTimeEntry
ProjectsApi PutWorkspaceProject PUT /workspaces/{workspace_id}/projects/{project_id} WorkspaceProject
ProjectsApi PutWorkspaceProjectUsers PUT /workspaces/{workspace_id}/project_users/{project_user_id} Update an user into workspace projects users
ProjectsApi WorkspacesWorkspaceIdProjectsBillableAmountsPost POST /workspaces/{workspace_id}/projects/billable-amounts Projects
ProjectsApi WorkspacesWorkspaceIdProjectsProjectIdGet GET /workspaces/{workspace_id}/projects/{project_id} WorkspaceProject
ProjectsApi WorkspacesWorkspaceIdProjectsProjectIdStatisticsGet GET /workspaces/{workspace_id}/projects/{project_id}/statistics WorkspaceProject
RatesApi CreateRate POST /workspaces/{workspace_id}/rates Rates creation
RatesApi DeleteRate DELETE /workspaces/{workspace_id}/rates/{rate_id} Rates delete
RatesApi GetRatesByLevel GET /workspaces/{workspace_id}/rates/{level}/{level_id} Rates list
ReportsApi DeleteSavedReportResource DELETE /workspaces/{workspace_id}/reports/shared/{report_id} models.SavedReport
ReportsApi DeleteWorkspaceScheduledReports DELETE /workspaces/{workspace_id}/scheduled_reports/{report_id} ScheduledReport
ReportsApi GetSavedReportResource GET /workspaces/{workspace_id}/reports/shared/{report_id} models.SavedReport
ReportsApi GetSharedReport GET /workspaces/{workspace_id}/reports/shared workspace.SharedReport
ReportsApi GetWorkspaceScheduledReports GET /workspaces/{workspace_id}/scheduled_reports ScheduledReports
ReportsApi PostSharedReport POST /workspaces/{workspace_id}/reports/shared workspace.SharedReport
ReportsApi PostWorkspaceScheduledReports POST /workspaces/{workspace_id}/scheduled_reports ScheduledReports
ReportsApi PutSavedReportResource PUT /workspaces/{workspace_id}/reports/shared/{report_id} models.SavedReport
ReportsApi PutSharedReport PUT /workspaces/{workspace_id}/reports/shared workspace.SharedReport
RolesApi RolesProductIdFindPost POST /roles/{product_id}/find Find role
RolesApi RolesProductIdGet GET /roles/{product_id} Get roles
SavedReportsApi ReportsApiV3SharedReportTokenCsvPost POST /reports/api/v3/shared/{report_token}.csv Export CSV for saved report
SavedReportsApi ReportsApiV3SharedReportTokenPdfPost POST /reports/api/v3/shared/{report_token}/pdf Export saved report in pdf format
SavedReportsApi ReportsApiV3SharedReportTokenPost POST /reports/api/v3/shared/{report_token} Load the previously saved report
SavedReportsApi ReportsApiV3SharedReportTokenXlsxPost POST /reports/api/v3/shared/{report_token}.xlsx Export XSLX saved report
SmailApi PostSmailContact POST /smail/contact Send an email to a contact
SmailApi PostSmailDemo POST /smail/demo Send an email for a demo
SmailApi PostSmailMeet POST /smail/meet Send an email for meet
StatusApi GetStatus GET /status Status
SubscriptionApi DeleteOrganizationSubscription DELETE /organizations/{organization_id}/subscription Subscription
SubscriptionApi DeleteWorkspaceSubscription DELETE /workspaces/{workspace_id}/subscription/{subscription_id} Subscription
SubscriptionApi GetCurrencies GET /currencies Currencies
SubscriptionApi GetOrganizationInvoice GET /organizations/{organization_id}/invoices/{invoice_uid}.pdf InvoicePdf
SubscriptionApi GetOrganizationInvoiceSummary GET /organizations/{organization_id}/subscription/invoice_summary Invoice Summary
SubscriptionApi GetOrganizationSubscription GET /organizations/{organization_id}/subscription Subscription
SubscriptionApi GetPublicSubscriptionPlans GET /workspaces/plans Public Subscription Plans
SubscriptionApi GetWorkspaceCurrencies GET /workspaces/{workspace_id}/currencies Get workspace currencies
SubscriptionApi GetWorkspaceCustomer GET /workspaces/{workspace_id}/customer Customer
SubscriptionApi GetWorkspaceFeatures GET /workspaces/{workspace_id}/subscription/features Features
SubscriptionApi GetWorkspaceFeaturesSelected GET /workspaces/{workspace_id}/subscription/selected_features SelectedFeatures
SubscriptionApi GetWorkspaceInvoices GET /workspaces/{workspace_id}/invoices/{invoice_id}.pdf InvoicePdf
SubscriptionApi GetWorkspacePaymentReceipts GET /workspaces/{workspace_id}/payment_receipts/{payment_id}.pdf PaymentReceipts
SubscriptionApi GetWorkspacePaymentRecords GET /workspaces/{workspace_id}/payment_records PaymentRecords
SubscriptionApi GetWorkspacePlans GET /workspaces/{workspace_id}/plans WorkspacePlans
SubscriptionApi GetWorkspacePlansPricing GET /workspaces/{workspace_id}/plans/{plan_id} WorkspacePlan
SubscriptionApi GetWorkspacePurchaseOrderPdf GET /workspaces/{workspace_id}/subscription/purchase_orders/{purchase_order_id}.pdf PurchaseOrderPdf
SubscriptionApi GetWorkspaceSubscription GET /workspaces/{workspace_id}/subscription Subscription
SubscriptionApi PostOrganizationPlansPricingFeedback POST /organizations/{organization_id}/pricing_plans/{pricing_plan_id}/feedback Feedback
SubscriptionApi PostOrganizationPurchaseOrder POST /organizations/{organization_id}/subscription/purchase_orders PurchaseOrders
SubscriptionApi PostOrganizationSubscription POST /organizations/{organization_id}/subscription Subscription
SubscriptionApi PostOrganizationSubscription_0 POST /organizations/{organization_id}/subscription/trial Subscription
SubscriptionApi PostWorkspaceCustomer POST /workspaces/{workspace_id}/customer/contact_detail ContactDetails
SubscriptionApi PostWorkspacePlansPricingFeedback POST /workspaces/{workspace_id}/pricing_plans/{pricing_plan_id}/feedback Feedback
SubscriptionApi PostWorkspacePurchaseOrder POST /workspaces/{workspace_id}/subscription/purchase_orders PurchaseOrders
SubscriptionApi PostWorkspaceSubscription POST /workspaces/{workspace_id}/subscription Subscription
SubscriptionApi PostWorkspaceSubscriptionCalculate POST /workspaces/{workspace_id}/subscription/calculate SubscriptionCalculation
SubscriptionApi PostWorkspaceSubscriptionIncAccept POST /workspaces/{workspace_id}/subscription/inc_accept IncAccept
SubscriptionApi PutOrganizationSubscription PUT /organizations/{organization_id}/subscription Subscription
SubscriptionApi PutWorkspaceProfile PUT /workspaces/{workspace_id}/profile/{profile_id} Profile
SummaryReportsApi ReportsApiV3WorkspaceWorkspaceIdProjectsProjectIdSummaryPost POST /reports/api/v3/workspace/{workspace_id}/projects/{project_id}/summary Load project summary
SummaryReportsApi ReportsApiV3WorkspaceWorkspaceIdProjectsSummaryPost POST /reports/api/v3/workspace/{workspace_id}/projects/summary List project users
SummaryReportsApi ReportsApiV3WorkspaceWorkspaceIdSummaryTimeEntriesExtensionPost POST /reports/api/v3/workspace/{workspace_id}/summary/time_entries.{extension} Export summary report
SummaryReportsApi ReportsApiV3WorkspaceWorkspaceIdSummaryTimeEntriesPdfPost POST /reports/api/v3/workspace/{workspace_id}/summary/time_entries.pdf Export summary report
SummaryReportsApi ReportsApiV3WorkspaceWorkspaceIdSummaryTimeEntriesPost POST /reports/api/v3/workspace/{workspace_id}/summary/time_entries Search time entries
TagsApi DeleteWorkspaceTag DELETE /workspaces/{workspace_id}/tags/{tag_id} Delete tag
TagsApi GetWorkspaceTag GET /workspaces/{workspace_id}/tags Tags
TagsApi PatchWorkspaceTags PATCH /workspaces/{workspace_id}/tags Bulk delete tags
TagsApi PostWorkspaceTag POST /workspaces/{workspace_id}/tags Create tag
TagsApi PutWorkspaceTag PUT /workspaces/{workspace_id}/tags/{tag_id} Update tag
TasksApi DeleteWorkspaceProjectTask DELETE /workspaces/{workspace_id}/projects/{project_id}/tasks/{task_id} WorkspaceProjectTask
TasksApi GetWorkspaceProjectTask GET /workspaces/{workspace_id}/projects/{project_id}/tasks/{task_id} WorkspaceProjectTask
TasksApi GetWorkspaceProjectTasks GET /workspaces/{workspace_id}/projects/{project_id}/tasks WorkspaceProjectTasks
TasksApi GetWorkspaceTasks GET /workspaces/{workspace_id}/tasks Tasks
TasksApi PatchWorkspaceProjectTasks PATCH /workspaces/{workspace_id}/projects/{project_id}/tasks/{task_ids} WorkspaceProjectTasks
TasksApi PostWorkspaceProjectTasks POST /workspaces/{workspace_id}/projects/{project_id}/tasks WorkspaceProjectTasks
TasksApi PutWorkspaceProjectTask PUT /workspaces/{workspace_id}/projects/{project_id}/tasks/{task_id} WorkspaceProjectTask
TimeEntriesApi DeleteWorkspaceTimeEntries DELETE /workspaces/{workspace_id}/time_entries/{time_entry_id} TimeEntries
TimeEntriesApi GetCurrentTimeEntry GET /me/time_entries/current Get current time entry
TimeEntriesApi GetTimeEntries GET /me/time_entries TimeEntries
TimeEntriesApi GetTimeEntryById GET /me/time_entries/{time_entry_id} Get a time entry by ID.
TimeEntriesApi GetTimeNotesEntryNotesById GET /me/time_entries/{time_entry_id}/notes Get a time entries' notes by ID.
TimeEntriesApi GetTimeNotesEntryNotesById_0 POST /me/time_entries/{time_entry_id}/notes Get a time entries' notes by ID.
TimeEntriesApi GetWorkspaceTimeEntryInvitations GET /workspaces/{workspace_id}/time_entry_invitations TimeEntries
TimeEntriesApi PatchTimeEntries PATCH /workspaces/{workspace_id}/time_entries/{time_entry_ids} Bulk editing time entries
TimeEntriesApi PatchWorkspaceStopTimeEntryHandler PATCH /workspaces/{workspace_id}/time_entries/{time_entry_id}/stop Stop TimeEntry
TimeEntriesApi PostMeTimeEntriesSharedWith POST /me/time_entries_shared_with TimeEntries
TimeEntriesApi PostWorkspaceTimeEntries POST /workspaces/{workspace_id}/time_entries TimeEntries
TimeEntriesApi PostWorkspaceTimeEntryInvitationAction POST /workspaces/{workspace_id}/time_entry_invitations/{time_entry_invitation_id}/{action} TimeEntries
TimeEntriesApi PutTimeEntryNotesById PUT /me/time_entries/{time_entry_id}/notes Put a time entry notes by ID.
TimeEntriesApi PutWorkspaceTimeEntryHandler PUT /workspaces/{workspace_id}/time_entries/{time_entry_id} TimeEntries
TimeEntriesNotesApi DeleteTimeEntryNotesById DELETE /me/time_entries/{time_entry_id}/notes delete a time entry note by ID.
TimeEntryConstraintsApi GetWorkspaceTimeEntryConstraints GET /workspaces/{workspace_id}/time_entry_constraints Get workspace time entry constraints
TimelineApi TimelineDelete DELETE /timeline Delete all timeline data
TimelineApi TimelineGet GET /timeline Get timeline events
TimelineApi TimelinePost POST /timeline Save timeline events
TimezonesApi GetOffsets GET /timezones/offsets Offsets
TimezonesApi GetTimezones GET /timezones Timezones
UserInvoicesApi DeleteWorkspaceInvoice DELETE /workspaces/{workspace_id}/invoices/{user_invoice_id} Delete user invoice.
UserInvoicesApi GetWorkspaceInvoices GET /workspaces/{workspace_id}/invoices Get workspace invoices.
UserInvoicesApi PostWorkspaceUserInvoice POST /workspaces/{workspace_id}/invoices Create user invoice
UsersApi DeleteOrganizationUsersLeave DELETE /organizations/{organization_id}/users/leave Leaves organization
UsersApi DeleteWorkspaceUser DELETE /workspaces/{workspace_id}/workspace_users/{workspace_user_id} Delete workspace user
UsersApi GetOrganizationUsers GET /organizations/{organization_id}/users List of users in organization
UsersApi GetOrganizationUsersDetailed GET /organizations/{organization_id}/users/detailed List of users in organization with details
UsersApi GetOrganizationWorkspacesWorkspaceusers GET /organizations/{organization_id}/workspaces/{workspace_id}/workspace_users List of users who belong to the given workspace.
UsersApi GetWorkspaceUsers GET /workspaces/{workspace_id}/users Get workspace users
UsersApi GetWorkspaceWorkspaceUsers GET /workspaces/{workspace_id}/workspace_users Get workspace workspace-users
UsersApi PatchOrganizationUsers PATCH /organizations/{organization_id}/users Apply changes in bulk to users in an organization
UsersApi PatchOrganizationWorkspaceUsers PATCH /organizations/{organization_id}/workspaces/{workspace_id}/workspace_users Changes the users in a workspace.
UsersApi PostWorkspaceUsersLostPassword POST /workspaces/{workspace_id}/users/{user_id}/lost_password Change a lost password
UsersApi PutOrganizationUsers PUT /organizations/{organization_id}/users/{organization_user_id} Changes a single organization-user
UsersApi PutOrganizationWorkspacesAssignments PUT /organizations/{organization_id}/workspaces/{workspace_id}/assignments Change assignments of users within a workspace.
UsersApi PutWorkspaceUsers PUT /workspaces/{workspace_id}/users/{user_id} Update workspace user
UsersApi PutWorkspaceWorkspaceUsers PUT /workspaces/{workspace_id}/workspace_users/{workspace_user_id} Update workspace-user
UtilsApi ReportsApiV3WorkspaceWorkspaceIdActionTasksPost POST /reports/api/v3/workspace/{workspace_id}/{action}/tasks List tasks
UtilsApi ReportsApiV3WorkspaceWorkspaceIdFiltersClientsPost POST /reports/api/v3/workspace/{workspace_id}/filters/clients List clients
UtilsApi ReportsApiV3WorkspaceWorkspaceIdFiltersProjectGroupsPost POST /reports/api/v3/workspace/{workspace_id}/filters/project_groups List project groups filter
UtilsApi ReportsApiV3WorkspaceWorkspaceIdFiltersProjectUsersPost POST /reports/api/v3/workspace/{workspace_id}/filters/project_users List project users
UtilsApi ReportsApiV3WorkspaceWorkspaceIdFiltersProjectsPost POST /reports/api/v3/workspace/{workspace_id}/filters/projects List projects
UtilsApi ReportsApiV3WorkspaceWorkspaceIdFiltersProjectsStatusPost POST /reports/api/v3/workspace/{workspace_id}/filters/projects/status List projects statuses
UtilsApi ReportsApiV3WorkspaceWorkspaceIdFiltersTasksStatusPost POST /reports/api/v3/workspace/{workspace_id}/filters/tasks/status List tasks statuses
UtilsApi ReportsApiV3WorkspaceWorkspaceIdFiltersUsersPost POST /reports/api/v3/workspace/{workspace_id}/filters/users List users
UtilsApi ReportsApiV3WorkspaceWorkspaceIdSearchClientsPost POST /reports/api/v3/workspace/{workspace_id}/search/clients Search clients
UtilsApi ReportsApiV3WorkspaceWorkspaceIdSearchProjectsPost POST /reports/api/v3/workspace/{workspace_id}/search/projects List projects
UtilsApi ReportsApiV3WorkspaceWorkspaceIdSearchUsersPost POST /reports/api/v3/workspace/{workspace_id}/search/users List users
WeeklyReportsApi ReportsApiV3WorkspaceWorkspaceIdWeeklyTimeEntriesCsvPost POST /reports/api/v3/workspace/{workspace_id}/weekly/time_entries.csv Export weekly report
WeeklyReportsApi ReportsApiV3WorkspaceWorkspaceIdWeeklyTimeEntriesPdfPost POST /reports/api/v3/workspace/{workspace_id}/weekly/time_entries.pdf Export weekly report
WeeklyReportsApi ReportsApiV3WorkspaceWorkspaceIdWeeklyTimeEntriesPost POST /reports/api/v3/workspace/{workspace_id}/weekly/time_entries Search time entries
WorkspacesApi DeleteAlerts DELETE /workspaces/{workspace_id}/alerts/{alert_id} Alerts
WorkspacesApi DeleteTimesheetSetups DELETE /workspaces/{workspace_id}/timesheet_setups/{setup_id} Delete a timesheet setup
WorkspacesApi DeleteWorkspaceTrackReminder DELETE /workspaces/{workspace_id}/track_reminders/{reminder_id} TrackReminder
WorkspacesApi DeleteWorkspaceUser DELETE /workspaces/{workspace_id}/workspace_users/{workspace_user_id} Delete workspace user
WorkspacesApi GetOrganizationWorkspacesGroups GET /organizations/{organization_id}/workspaces/{workspace_id}/groups List of groups in a workspace within an organization with user assignments.
WorkspacesApi GetOrganizationWorkspacesStatistics GET /organizations/{organization_id}/workspaces/statistics Statistics for all workspaces in the organization
WorkspacesApi GetOrganizationWorkspacesWorkspaceusers GET /organizations/{organization_id}/workspaces/{workspace_id}/workspace_users List of users who belong to the given workspace.
WorkspacesApi GetTimesheetSetups GET /workspaces/{workspace_id}/timesheet_setups Get timesheet setups
WorkspacesApi GetWorkspace GET /workspaces/{workspace_id} Get single workspace
WorkspacesApi GetWorkspaceStatistics GET /workspaces/{workspace_id}/statistics Workspace statistics
WorkspacesApi GetWorkspaceTimeEntryConstraints GET /workspaces/{workspace_id}/time_entry_constraints Get workspace time entry constraints
WorkspacesApi GetWorkspaceTimesheetHoursHandler POST /workspaces/{workspace_id}/timesheets/hours Get timesheets hours
WorkspacesApi GetWorkspaceTimesheetTimeEntriesHandler GET /workspaces/{workspace_id}/timesheets/{setup_id}/{start_date} Get timesheet time entries
WorkspacesApi GetWorkspaceTimesheetsHandler GET /workspaces/{workspace_id}/timesheets Get timesheets
WorkspacesApi GetWorkspaceTrackReminders GET /workspaces/{workspace_id}/track_reminders TrackReminders
WorkspacesApi GetWorkspaceUsers GET /workspaces/{workspace_id}/users Get workspace users
WorkspacesApi GetWorkspaces GET /me/workspaces Workspaces
WorkspacesApi PatchOrganizationWorkspaceUsers PATCH /organizations/{organization_id}/workspaces/{workspace_id}/workspace_users Changes the users in a workspace.
WorkspacesApi PostAlerts POST /workspaces/{workspace_id}/alerts Alerts
WorkspacesApi PostOrganizationWorkspaces POST /organizations/{organization_id}/workspaces Create a new workspace.
WorkspacesApi PostTimesheetSetups POST /workspaces/{workspace_id}/timesheet_setups Create a timesheet setup
WorkspacesApi PostWorkspaceTrackReminders POST /workspaces/{workspace_id}/track_reminders TrackReminders
WorkspacesApi PostWorkspaceUsersLostPassword POST /workspaces/{workspace_id}/users/{user_id}/lost_password Change a lost password
WorkspacesApi PutOrganizationWorkspacesAssignments PUT /organizations/{organization_id}/workspaces/{workspace_id}/assignments Change assignments of users within a workspace.
WorkspacesApi PutTimesheetSetups POST /workspaces/{workspace_id}/timesheet_setups/{setup_id} Update a timesheet setup
WorkspacesApi PutWorkspaceTimesheetsHandler PUT /workspaces/{workspace_id}/timesheets/{setup_id}/{start_date} Update timesheets
WorkspacesApi PutWorkspaceTrackReminder PUT /workspaces/{workspace_id}/track_reminders/{reminder_id} TrackReminder
WorkspacesApi PutWorkspaceUsers PUT /workspaces/{workspace_id}/users/{user_id} Update workspace user
WorkspacesApi PutWorkspaceWorkspaceUsers PUT /workspaces/{workspace_id}/workspace_users/{workspace_user_id} Update workspace-user
WorkspacesApi PutWorkspaces PUT /workspaces/{workspace_id} Update workspace
WorkspaceslogoApi GetWorkspaceLogo GET /workspaces/{workspace_id}/logo Get workspace logo
WorkspaceslogoApi GetWorkspaceLogo_0 DELETE /workspaces/{workspace_id}/logo Delete workspace logo
WorkspaceslogoApi PostWorkspaceLogo POST /workspaces/{workspace_id}/logo Post workspace logo
WorkspacesreportssharedApi BulkDeleteSavedReportResource PATCH /workspaces/{workspace_id}/reports/shared/bulk_delete SavedReport
WorkspacestimeEntryConstraintsApi PostWorkspaceTimeEntryConstraints POST /workspaces/{workspace_id}/time_entry_constraints Post workspace time entry constraints

Documentation for Models

Documentation for Authorization

BasicAuth

  • Type: HTTP basic authentication

About

.Net Toggl API wrapper

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%