RoutesWhat's going where..
Routes
| Name | Method | Pattern | Controller | Action |
|---|---|---|---|---|
| publicHome | get | /home | public.public | home |
| publicPrivacy | get | /privacy | public.public | privacy |
| publicTerms | get | /terms | public.public | terms |
| publicClientlogin | get | /login | public.client | login |
| publicClientlogin | post | /login | public.client | loginAction |
| publicClientNoAccess | get | /access-denied | public.client | accessDenied |
| publicClientNoSubscription | get | /no-subscription | public.client | noSubscription |
| publicClientsignup | get | /signup | public.client | signup |
| publicClientsignup | post | /signup | public.client | signupAction |
| publicClientorganizationsignup | get | /enterprise-signup | public.client | organizationsignup |
| publicClientorganizationsignup | post | /enterprise-signup | public.client | organizationsignupAction |
| publicClientForgotPassword | get | /forgot-password | public.client | forgotPassword |
| publicClientForgotPassword | post | /forgot-password | public.client | forgotPasswordAction |
| publicClientResetPassword | get | /reset-password | public.client | resetPassword |
| publicClientResetPassword | post | /reset-password | public.client | resetPasswordAction |
| publicClientChangedPassword | get | /password-changed | public.client | passwordChanged |
| publicFirebaseMain | get | /firebase-main.js | public.firebase | main |
| publicFirebaseMessaging | get | /firebase-messaging.js | public.firebase | messaging |
| publicFirebaseServiceWorker | get | /firebase-messaging-sw.js | public.firebase | serviceWorker |
| publicFirebaseUpdateMessagingToken | post | /firebase-messaging-token | public.firebase | updateMessagingToken |
| publicManagerlogin | get | /manager/login | public.manager | login |
| publicManagerlogin | post | /manager/login | public.manager | loginAction |
| publicManagersignup | get | /manager/signup | public.manager | signup |
| publicManagersignup | post | /manager/signup | public.manager | signupAction |
| publicManagerForgotPassword | get | /manager/forgot-password | public.manager | forgotPassword |
| publicManagerForgotPassword | post | /manager/forgot-password | public.manager | forgotPasswordAction |
| publicManagerResetPassword | get | /manager/reset-password | public.manager | resetPassword |
| publicManagerResetPassword | post | /manager/reset-password | public.manager | resetPasswordAction |
| publicManagerChangedPassword | get | /manager/password-changed | public.manager | passwordChanged |
| publicLogout | get | /logout | public.public | logout |
| publicManagerlogout | get | /manager/logout | public.manager | logout |
| clientRoot | get | /client | client.home | dashboard |
| clientDashboard | get | /client/dashboard | client.home | dashboard |
| clientSheets | get | /client/sheets.[format] | client.sheets | index |
| clientSheets | get | /client/sheets | client.sheets | index |
| clientSheets | post | /client/sheets.[format] | client.sheets | create |
| clientSheets | post | /client/sheets | client.sheets | create |
| newClientSheet | get | /client/sheets/new.[format] | client.sheets | new |
| newClientSheet | get | /client/sheets/new | client.sheets | new |
| editClientSheet | get | /client/sheets/[key]/edit.[format] | client.sheets | edit |
| editClientSheet | get | /client/sheets/[key]/edit | client.sheets | edit |
| clientSheet | get | /client/sheets/[key].[format] | client.sheets | show |
| clientSheet | get | /client/sheets/[key] | client.sheets | show |
| clientSheet | patch | /client/sheets/[key].[format] | client.sheets | update |
| clientSheet | patch | /client/sheets/[key] | client.sheets | update |
| clientSheet | put | /client/sheets/[key].[format] | client.sheets | update |
| clientSheet | put | /client/sheets/[key] | client.sheets | update |
| clientSheet | delete | /client/sheets/[key].[format] | client.sheets | delete |
| clientSheet | delete | /client/sheets/[key] | client.sheets | delete |
| clientDeleteSheet | delete | /client/[backNav]/sheets/[key] | client.sheets | delete |
| clientShowSheet | get | /client/[backNav]/sheets/[key] | client.sheets | show |
| clientShowSheet | patch | /client/[backNav]/sheets/[key] | client.sheets | update |
| clientFavoriteSheet | get | /client/sheets/[key]/favorite | client.sheets | favorite |
| clientUnfavoriteSheet | get | /client/sheets/[key]/unfavorite | client.sheets | unfavorite |
| clientSheetSharing | get | /client/sheets/sharing/[key] | client.sheets | sharing |
| clientShareSheet | post | /client/sheets/[key]/share | client.sheets | share |
| clientUnshareSheet | post | /client/sheets/[key]/unshare | client.sheets | unshare |
| clientRemoveSheet | get | /client/sheets/[key]/remove | client.sheets | remove |
| clientCustomFields | get | /client/[modeltype]/[modelkey]/fields.[format] | client.customFields | index |
| clientCustomFields | get | /client/[modeltype]/[modelkey]/fields | client.customFields | index |
| clientCustomFields | post | /client/[modeltype]/[modelkey]/fields.[format] | client.customFields | create |
| clientCustomFields | post | /client/[modeltype]/[modelkey]/fields | client.customFields | create |
| newClientCustomField | get | /client/[modeltype]/[modelkey]/fields/new.[format] | client.customFields | new |
| newClientCustomField | get | /client/[modeltype]/[modelkey]/fields/new | client.customFields | new |
| editClientCustomField | get | /client/[modeltype]/[modelkey]/fields/[key]/edit.[format] | client.customFields | edit |
| editClientCustomField | get | /client/[modeltype]/[modelkey]/fields/[key]/edit | client.customFields | edit |
| clientCustomField | get | /client/[modeltype]/[modelkey]/fields/[key].[format] | client.customFields | show |
| clientCustomField | get | /client/[modeltype]/[modelkey]/fields/[key] | client.customFields | show |
| clientCustomField | patch | /client/[modeltype]/[modelkey]/fields/[key].[format] | client.customFields | update |
| clientCustomField | patch | /client/[modeltype]/[modelkey]/fields/[key] | client.customFields | update |
| clientCustomField | put | /client/[modeltype]/[modelkey]/fields/[key].[format] | client.customFields | update |
| clientCustomField | put | /client/[modeltype]/[modelkey]/fields/[key] | client.customFields | update |
| clientCustomField | delete | /client/[modeltype]/[modelkey]/fields/[key].[format] | client.customFields | delete |
| clientCustomField | delete | /client/[modeltype]/[modelkey]/fields/[key] | client.customFields | delete |
| clientMoveUpCustomField | post | /client/[modeltype]/[modelkey]/fields/[key]/up | client.customFields | moveUp |
| clientMoveDownCustomField | post | /client/[modeltype]/[modelkey]/fields/[key]/down | client.customFields | moveDown |
| clientCustomCategories | get | /client/[modeltype]/[modelkey]/categories.[format] | client.customCategories | index |
| clientCustomCategories | get | /client/[modeltype]/[modelkey]/categories | client.customCategories | index |
| clientCustomCategories | post | /client/[modeltype]/[modelkey]/categories.[format] | client.customCategories | create |
| clientCustomCategories | post | /client/[modeltype]/[modelkey]/categories | client.customCategories | create |
| newClientCustomCategory | get | /client/[modeltype]/[modelkey]/categories/new.[format] | client.customCategories | new |
| newClientCustomCategory | get | /client/[modeltype]/[modelkey]/categories/new | client.customCategories | new |
| editClientCustomCategory | get | /client/[modeltype]/[modelkey]/categories/[key]/edit.[format] | client.customCategories | edit |
| editClientCustomCategory | get | /client/[modeltype]/[modelkey]/categories/[key]/edit | client.customCategories | edit |
| clientCustomCategory | get | /client/[modeltype]/[modelkey]/categories/[key].[format] | client.customCategories | show |
| clientCustomCategory | get | /client/[modeltype]/[modelkey]/categories/[key] | client.customCategories | show |
| clientCustomCategory | patch | /client/[modeltype]/[modelkey]/categories/[key].[format] | client.customCategories | update |
| clientCustomCategory | patch | /client/[modeltype]/[modelkey]/categories/[key] | client.customCategories | update |
| clientCustomCategory | put | /client/[modeltype]/[modelkey]/categories/[key].[format] | client.customCategories | update |
| clientCustomCategory | put | /client/[modeltype]/[modelkey]/categories/[key] | client.customCategories | update |
| clientCustomCategory | delete | /client/[modeltype]/[modelkey]/categories/[key].[format] | client.customCategories | delete |
| clientCustomCategory | delete | /client/[modeltype]/[modelkey]/categories/[key] | client.customCategories | delete |
| clientMoveUpCustomCategory | post | /client/[modeltype]/[modelkey]/categories/[key]/up | client.customCategories | moveUp |
| clientMoveDownCustomCategory | post | /client/[modeltype]/[modelkey]/categories/[key]/down | client.customCategories | moveDown |
| clientCustomStatuses | get | /client/[modeltype]/[modelkey]/statuses.[format] | client.customStatuses | index |
| clientCustomStatuses | get | /client/[modeltype]/[modelkey]/statuses | client.customStatuses | index |
| clientCustomStatuses | post | /client/[modeltype]/[modelkey]/statuses.[format] | client.customStatuses | create |
| clientCustomStatuses | post | /client/[modeltype]/[modelkey]/statuses | client.customStatuses | create |
| newClientCustomStatus | get | /client/[modeltype]/[modelkey]/statuses/new.[format] | client.customStatuses | new |
| newClientCustomStatus | get | /client/[modeltype]/[modelkey]/statuses/new | client.customStatuses | new |
| editClientCustomStatus | get | /client/[modeltype]/[modelkey]/statuses/[key]/edit.[format] | client.customStatuses | edit |
| editClientCustomStatus | get | /client/[modeltype]/[modelkey]/statuses/[key]/edit | client.customStatuses | edit |
| clientCustomStatus | get | /client/[modeltype]/[modelkey]/statuses/[key].[format] | client.customStatuses | show |
| clientCustomStatus | get | /client/[modeltype]/[modelkey]/statuses/[key] | client.customStatuses | show |
| clientCustomStatus | patch | /client/[modeltype]/[modelkey]/statuses/[key].[format] | client.customStatuses | update |
| clientCustomStatus | patch | /client/[modeltype]/[modelkey]/statuses/[key] | client.customStatuses | update |
| clientCustomStatus | put | /client/[modeltype]/[modelkey]/statuses/[key].[format] | client.customStatuses | update |
| clientCustomStatus | put | /client/[modeltype]/[modelkey]/statuses/[key] | client.customStatuses | update |
| clientCustomStatus | delete | /client/[modeltype]/[modelkey]/statuses/[key].[format] | client.customStatuses | delete |
| clientCustomStatus | delete | /client/[modeltype]/[modelkey]/statuses/[key] | client.customStatuses | delete |
| clientMoveUpCustomStatus | post | /client/[modeltype]/[modelkey]/statuses/[key]/up | client.customStatuses | moveUp |
| clientMoveDownCustomStatus | post | /client/[modeltype]/[modelkey]/statuses/[key]/down | client.customStatuses | moveDown |
| clientShareRequests | get | /client/share-requests | client.shareRequests | index |
| clientShareRequests | post | /client/share-requests | client.shareRequests | requestsAction |
| clientCells | get | /client/cells.[format] | client.cells | index |
| clientCells | get | /client/cells | client.cells | index |
| clientCells | post | /client/sheets/[sheetkey]/cells.[format] | client.cells | create |
| clientCells | post | /client/sheets/[sheetkey]/cells | client.cells | create |
| newClientCell | get | /client/sheets/[sheetkey]/cells/new.[format] | client.cells | new |
| newClientCell | get | /client/sheets/[sheetkey]/cells/new | client.cells | new |
| editClientCell | get | /client/sheets/[sheetkey]/cells/[key]/edit.[format] | client.cells | edit |
| editClientCell | get | /client/sheets/[sheetkey]/cells/[key]/edit | client.cells | edit |
| clientCell | get | /client/sheets/[sheetkey]/cells/[key].[format] | client.cells | show |
| clientCell | get | /client/sheets/[sheetkey]/cells/[key] | client.cells | show |
| clientCell | patch | /client/sheets/[sheetkey]/cells/[key].[format] | client.cells | update |
| clientCell | patch | /client/sheets/[sheetkey]/cells/[key] | client.cells | update |
| clientCell | put | /client/sheets/[sheetkey]/cells/[key].[format] | client.cells | update |
| clientCell | put | /client/sheets/[sheetkey]/cells/[key] | client.cells | update |
| clientCell | delete | /client/sheets/[sheetkey]/cells/[key].[format] | client.cells | delete |
| clientCell | delete | /client/sheets/[sheetkey]/cells/[key] | client.cells | delete |
| clientShowCell | get | /client/[backNav]/sheets/[sheetkey]/cells/[key] | client.cells | show |
| clientUpdateCell | patch | /client/[backNav]/sheets/[sheetkey]/cells/[key] | client.cells | update |
| clientCellComments | post | /client/sheets/[sheetkey]/cells/[cellkey]/comments.[format] | client.cellComments | create |
| clientCellComments | post | /client/sheets/[sheetkey]/cells/[cellkey]/comments | client.cellComments | create |
| clientCellPrint | post | /client/cells/[key]/print | client.cells | printAction |
| clientCellMoveToGrid | post | /client/cells/move-to-sheet | client.cells | moveCellToGrid |
| clientAttachmentUploadUrl | post | /client/attachments/get-upload-url.[format] | client.attachments | getUploadURL |
| clientDeleteCellAttachment | delete | /client/attachments/[key] | client.cellAttachments | delete |
| clientOrganizations | get | /client/organizations.[format] | client.organizations | index |
| clientOrganizations | get | /client/organizations | client.organizations | index |
| clientOrganizations | post | /client/organizations.[format] | client.organizations | create |
| clientOrganizations | post | /client/organizations | client.organizations | create |
| newClientOrganization | get | /client/organizations/new.[format] | client.organizations | new |
| newClientOrganization | get | /client/organizations/new | client.organizations | new |
| editClientOrganization | get | /client/organizations/[key]/edit.[format] | client.organizations | edit |
| editClientOrganization | get | /client/organizations/[key]/edit | client.organizations | edit |
| clientOrganization | get | /client/organizations/[key].[format] | client.organizations | show |
| clientOrganization | get | /client/organizations/[key] | client.organizations | show |
| clientOrganization | patch | /client/organizations/[key].[format] | client.organizations | update |
| clientOrganization | patch | /client/organizations/[key] | client.organizations | update |
| clientOrganization | put | /client/organizations/[key].[format] | client.organizations | update |
| clientOrganization | put | /client/organizations/[key] | client.organizations | update |
| clientOrganization | delete | /client/organizations/[key].[format] | client.organizations | delete |
| clientOrganization | delete | /client/organizations/[key] | client.organizations | delete |
| clientInviteOrganizationMember | get | /client/organizations/[organizationKey]/members/invite | client.organizationMembers | invite |
| clientRemoveInviteOrganizationMember | delete | /client/organizations/[organizationKey]/members/invite/[key] | client.organizationMembers | removeInvite |
| clientResendInviteOrganizationMember | post | /client/organizations/[organizationKey]/members/invite/[key] | client.organizationMembers | resendInvite |
| clientOrganizationMembers | get | /client/organizations/[organizationKey]/members | client.organizationMembers | index |
| clientNewOrganizationMember | post | /client/organizations/[organizationKey]/members/new | client.organizationMembers | create |
| clientActivateOrganizationMember | post | /client/organizations/[organizationKey]/members/[key] | client.organizationMembers | activate |
| clientRemoveOrganizationMember | delete | /client/organizations/[organizationKey]/members/[key] | client.organizationMembers | delete |
| clientGroups | get | /client/groups.[format] | client.groups | index |
| clientGroups | get | /client/groups | client.groups | index |
| clientGroups | post | /client/groups.[format] | client.groups | create |
| clientGroups | post | /client/groups | client.groups | create |
| newClientGroup | get | /client/groups/new.[format] | client.groups | new |
| newClientGroup | get | /client/groups/new | client.groups | new |
| editClientGroup | get | /client/groups/[key]/edit.[format] | client.groups | edit |
| editClientGroup | get | /client/groups/[key]/edit | client.groups | edit |
| clientGroup | get | /client/groups/[key].[format] | client.groups | show |
| clientGroup | get | /client/groups/[key] | client.groups | show |
| clientGroup | patch | /client/groups/[key].[format] | client.groups | update |
| clientGroup | patch | /client/groups/[key] | client.groups | update |
| clientGroup | put | /client/groups/[key].[format] | client.groups | update |
| clientGroup | put | /client/groups/[key] | client.groups | update |
| clientGroup | delete | /client/groups/[key].[format] | client.groups | delete |
| clientGroup | delete | /client/groups/[key] | client.groups | delete |
| clientActivateGroup | get | /client/group/[key]/activate | client.groups | activate |
| clientDeactivateGroup | get | /client/group/[key]/deactivate | client.groups | deactivate |
| clientJoinGroup | get | /client/group/[key]/join | client.groups | join |
| clientLeaveGroup | get | /client/group/[key]/leave | client.groups | leave |
| clientAddGroupMember | post | /client/group/[key]/members/new | client.groups | add |
| clientRemoveGroupMember | delete | /client/group/[key]/members | client.groups | remove |
| clientAddGroupAdmin | post | /client/group/[key]/admins/new | client.groups | addAdmin |
| clientRemoveGroupAdmin | delete | /client/group/[key]/admins | client.groups | removeAdmin |
| clientSubGroups | get | /client/group/[key]/subgroups | client.groups | index |
| clientCreateSubGroup | post | /client/group/[key]/groups/new | client.groups | createSubGroup |
| clientAddGroupRole | post | /client/group/[key]/roles | client.groups | addRole |
| clientRemoveGroupRole | delete | /client/group/[key]/roles | client.groups | removeRole |
| clientJoinOrganization | get | /client/join-organization | client.organizations | join |
| clientJoinOrganization | post | /client/join-organization | client.organizations | joinAction |
| clientTutorials | get | /client/tutorials | client.tutorials | index |
| clientGlobalViews | get | /client/global-views.[format] | client.globalViews | index |
| clientGlobalViews | get | /client/global-views | client.globalViews | index |
| clientGlobalViews | post | /client/global-views.[format] | client.globalViews | create |
| clientGlobalViews | post | /client/global-views | client.globalViews | create |
| newClientGlobalView | get | /client/global-views/new.[format] | client.globalViews | new |
| newClientGlobalView | get | /client/global-views/new | client.globalViews | new |
| editClientGlobalView | get | /client/global-views/[key]/edit.[format] | client.globalViews | edit |
| editClientGlobalView | get | /client/global-views/[key]/edit | client.globalViews | edit |
| clientGlobalView | get | /client/global-views/[key].[format] | client.globalViews | show |
| clientGlobalView | get | /client/global-views/[key] | client.globalViews | show |
| clientGlobalView | patch | /client/global-views/[key].[format] | client.globalViews | update |
| clientGlobalView | patch | /client/global-views/[key] | client.globalViews | update |
| clientGlobalView | put | /client/global-views/[key].[format] | client.globalViews | update |
| clientGlobalView | put | /client/global-views/[key] | client.globalViews | update |
| clientGlobalView | delete | /client/global-views/[key].[format] | client.globalViews | delete |
| clientGlobalView | delete | /client/global-views/[key] | client.globalViews | delete |
| clientPayments | get | /client/payments.[format] | client.payments | index |
| clientPayments | get | /client/payments | client.payments | index |
| clientPayments | post | /client/payments.[format] | client.payments | create |
| clientPayments | post | /client/payments | client.payments | create |
| newClientPayment | get | /client/payments/new.[format] | client.payments | new |
| newClientPayment | get | /client/payments/new | client.payments | new |
| editClientPayment | get | /client/payments/[key]/edit.[format] | client.payments | edit |
| editClientPayment | get | /client/payments/[key]/edit | client.payments | edit |
| clientPayment | get | /client/payments/[key].[format] | client.payments | show |
| clientPayment | get | /client/payments/[key] | client.payments | show |
| clientPayment | patch | /client/payments/[key].[format] | client.payments | update |
| clientPayment | patch | /client/payments/[key] | client.payments | update |
| clientPayment | put | /client/payments/[key].[format] | client.payments | update |
| clientPayment | put | /client/payments/[key] | client.payments | update |
| clientPayment | delete | /client/payments/[key].[format] | client.payments | delete |
| clientPayment | delete | /client/payments/[key] | client.payments | delete |
| clientAccount | post | /client/account.[format] | client.accounts | create |
| clientAccount | post | /client/account | client.accounts | create |
| newClientAccount | get | /client/account/new.[format] | client.accounts | new |
| newClientAccount | get | /client/account/new | client.accounts | new |
| editClientAccount | get | /client/account/edit.[format] | client.accounts | edit |
| editClientAccount | get | /client/account/edit | client.accounts | edit |
| clientAccount | get | /client/account.[format] | client.accounts | show |
| clientAccount | get | /client/account | client.accounts | show |
| clientAccount | patch | /client/account.[format] | client.accounts | update |
| clientAccount | patch | /client/account | client.accounts | update |
| clientAccount | put | /client/account.[format] | client.accounts | update |
| clientAccount | put | /client/account | client.accounts | update |
| clientAccount | delete | /client/account.[format] | client.accounts | delete |
| clientAccount | delete | /client/account | client.accounts | delete |
| clientSubscriptions | get | /client/subscriptions.[format] | client.subscriptions | index |
| clientSubscriptions | get | /client/subscriptions | client.subscriptions | index |
| clientSubscriptions | post | /client/subscriptions.[format] | client.subscriptions | create |
| clientSubscriptions | post | /client/subscriptions | client.subscriptions | create |
| newClientSubscription | get | /client/subscriptions/new.[format] | client.subscriptions | new |
| newClientSubscription | get | /client/subscriptions/new | client.subscriptions | new |
| editClientSubscription | get | /client/subscriptions/[key]/edit.[format] | client.subscriptions | edit |
| editClientSubscription | get | /client/subscriptions/[key]/edit | client.subscriptions | edit |
| clientSubscription | get | /client/subscriptions/[key].[format] | client.subscriptions | show |
| clientSubscription | get | /client/subscriptions/[key] | client.subscriptions | show |
| clientSubscription | patch | /client/subscriptions/[key].[format] | client.subscriptions | update |
| clientSubscription | patch | /client/subscriptions/[key] | client.subscriptions | update |
| clientSubscription | put | /client/subscriptions/[key].[format] | client.subscriptions | update |
| clientSubscription | put | /client/subscriptions/[key] | client.subscriptions | update |
| clientSubscription | delete | /client/subscriptions/[key].[format] | client.subscriptions | delete |
| clientSubscription | delete | /client/subscriptions/[key] | client.subscriptions | delete |
| clientInvoices | get | /client/invoices.[format] | client.invoices | index |
| clientInvoices | get | /client/invoices | client.invoices | index |
| manager | get | /manager | manager.home | dashboard |
| managerDashboard | get | /manager/dashboard | manager.home | dashboard |
| managerOrganizations | get | /manager/organizations.[format] | manager.organizations | index |
| managerOrganizations | get | /manager/organizations | manager.organizations | index |
| managerOrganizations | post | /manager/organizations.[format] | manager.organizations | create |
| managerOrganizations | post | /manager/organizations | manager.organizations | create |
| newManagerOrganization | get | /manager/organizations/new.[format] | manager.organizations | new |
| newManagerOrganization | get | /manager/organizations/new | manager.organizations | new |
| editManagerOrganization | get | /manager/organizations/[key]/edit.[format] | manager.organizations | edit |
| editManagerOrganization | get | /manager/organizations/[key]/edit | manager.organizations | edit |
| managerOrganization | get | /manager/organizations/[key].[format] | manager.organizations | show |
| managerOrganization | get | /manager/organizations/[key] | manager.organizations | show |
| managerOrganization | patch | /manager/organizations/[key].[format] | manager.organizations | update |
| managerOrganization | patch | /manager/organizations/[key] | manager.organizations | update |
| managerOrganization | put | /manager/organizations/[key].[format] | manager.organizations | update |
| managerOrganization | put | /manager/organizations/[key] | manager.organizations | update |
| managerOrganization | delete | /manager/organizations/[key].[format] | manager.organizations | delete |
| managerOrganization | delete | /manager/organizations/[key] | manager.organizations | delete |
| managerOrganizationMembers | get | /manager/organizations/[key]/members | manager.organizations | members |
| managerClients | get | /manager/clients.[format] | manager.clients | index |
| managerClients | get | /manager/clients | manager.clients | index |
| managerClients | post | /manager/clients.[format] | manager.clients | create |
| managerClients | post | /manager/clients | manager.clients | create |
| newManagerClient | get | /manager/clients/new.[format] | manager.clients | new |
| newManagerClient | get | /manager/clients/new | manager.clients | new |
| editManagerClient | get | /manager/clients/[key]/edit.[format] | manager.clients | edit |
| editManagerClient | get | /manager/clients/[key]/edit | manager.clients | edit |
| managerClient | get | /manager/clients/[key].[format] | manager.clients | show |
| managerClient | get | /manager/clients/[key] | manager.clients | show |
| managerClient | patch | /manager/clients/[key].[format] | manager.clients | update |
| managerClient | patch | /manager/clients/[key] | manager.clients | update |
| managerClient | put | /manager/clients/[key].[format] | manager.clients | update |
| managerClient | put | /manager/clients/[key] | manager.clients | update |
| managerClient | delete | /manager/clients/[key].[format] | manager.clients | delete |
| managerClient | delete | /manager/clients/[key] | manager.clients | delete |
| managerOauth2apps | get | /manager/oauth2apps.[format] | manager.oauth2apps | index |
| managerOauth2apps | get | /manager/oauth2apps | manager.oauth2apps | index |
| managerOauth2apps | post | /manager/oauth2apps.[format] | manager.oauth2apps | create |
| managerOauth2apps | post | /manager/oauth2apps | manager.oauth2apps | create |
| newManagerOauth2app | get | /manager/oauth2apps/new.[format] | manager.oauth2apps | new |
| newManagerOauth2app | get | /manager/oauth2apps/new | manager.oauth2apps | new |
| editManagerOauth2app | get | /manager/oauth2apps/[key]/edit.[format] | manager.oauth2apps | edit |
| editManagerOauth2app | get | /manager/oauth2apps/[key]/edit | manager.oauth2apps | edit |
| managerOauth2app | get | /manager/oauth2apps/[key].[format] | manager.oauth2apps | show |
| managerOauth2app | get | /manager/oauth2apps/[key] | manager.oauth2apps | show |
| managerOauth2app | patch | /manager/oauth2apps/[key].[format] | manager.oauth2apps | update |
| managerOauth2app | patch | /manager/oauth2apps/[key] | manager.oauth2apps | update |
| managerOauth2app | put | /manager/oauth2apps/[key].[format] | manager.oauth2apps | update |
| managerOauth2app | put | /manager/oauth2apps/[key] | manager.oauth2apps | update |
| managerOauth2app | delete | /manager/oauth2apps/[key].[format] | manager.oauth2apps | delete |
| managerOauth2app | delete | /manager/oauth2apps/[key] | manager.oauth2apps | delete |
| managerManagers | get | /manager/managers.[format] | manager.managers | index |
| managerManagers | get | /manager/managers | manager.managers | index |
| managerManagers | post | /manager/managers.[format] | manager.managers | create |
| managerManagers | post | /manager/managers | manager.managers | create |
| newManagerManager | get | /manager/managers/new.[format] | manager.managers | new |
| newManagerManager | get | /manager/managers/new | manager.managers | new |
| editManagerManager | get | /manager/managers/[key]/edit.[format] | manager.managers | edit |
| editManagerManager | get | /manager/managers/[key]/edit | manager.managers | edit |
| managerManager | get | /manager/managers/[key].[format] | manager.managers | show |
| managerManager | get | /manager/managers/[key] | manager.managers | show |
| managerManager | patch | /manager/managers/[key].[format] | manager.managers | update |
| managerManager | patch | /manager/managers/[key] | manager.managers | update |
| managerManager | put | /manager/managers/[key].[format] | manager.managers | update |
| managerManager | put | /manager/managers/[key] | manager.managers | update |
| managerManager | delete | /manager/managers/[key].[format] | manager.managers | delete |
| managerManager | delete | /manager/managers/[key] | manager.managers | delete |
| managerManagerPermissions | get | /manager/managers/[key]/permissions | manager.managers | permissions |
| managerManagerPermissions | patch | /manager/managers/[key]/permissions | manager.managers | permissionsAction |
| scheduledScriptsDocumentChanged | post | /scheduled-scripts/documentChanged | scheduledScripts.eventHandlers | documentChanged |
| oauthV2Token | get | /oauth/v2/token | oauth.v2.oauth2 | token |
| oauthV2Token | post | /oauth/v2/token | oauth.v2.oauth2 | token |
| oauthV2Validate | get | /oauth/v2/validate | oauth.v2.oauth2 | validate |
| apiV1Sheets | get | /api/v1/sheets.[format] | api.v1.sheets | index |
| apiV1Sheets | get | /api/v1/sheets | api.v1.sheets | index |
| apiV1Sheets | post | /api/v1/sheets.[format] | api.v1.sheets | create |
| apiV1Sheets | post | /api/v1/sheets | api.v1.sheets | create |
| newApiV1Sheet | get | /api/v1/sheets/new.[format] | api.v1.sheets | new |
| newApiV1Sheet | get | /api/v1/sheets/new | api.v1.sheets | new |
| editApiV1Sheet | get | /api/v1/sheets/[key]/edit.[format] | api.v1.sheets | edit |
| editApiV1Sheet | get | /api/v1/sheets/[key]/edit | api.v1.sheets | edit |
| apiV1Sheet | get | /api/v1/sheets/[key].[format] | api.v1.sheets | show |
| apiV1Sheet | get | /api/v1/sheets/[key] | api.v1.sheets | show |
| apiV1Sheet | patch | /api/v1/sheets/[key].[format] | api.v1.sheets | update |
| apiV1Sheet | patch | /api/v1/sheets/[key] | api.v1.sheets | update |
| apiV1Sheet | put | /api/v1/sheets/[key].[format] | api.v1.sheets | update |
| apiV1Sheet | put | /api/v1/sheets/[key] | api.v1.sheets | update |
| apiV1Sheet | delete | /api/v1/sheets/[key].[format] | api.v1.sheets | delete |
| apiV1Sheet | delete | /api/v1/sheets/[key] | api.v1.sheets | delete |
| apiV1ChatThreads | get | /api/v1/chat-threads.[format] | api.v1.chatThreads | index |
| apiV1ChatThreads | get | /api/v1/chat-threads | api.v1.chatThreads | index |
| apiV1ChatThreads | post | /api/v1/chat-threads.[format] | api.v1.chatThreads | create |
| apiV1ChatThreads | post | /api/v1/chat-threads | api.v1.chatThreads | create |
| newApiV1ChatThread | get | /api/v1/chat-threads/new.[format] | api.v1.chatThreads | new |
| newApiV1ChatThread | get | /api/v1/chat-threads/new | api.v1.chatThreads | new |
| editApiV1ChatThread | get | /api/v1/chat-threads/[key]/edit.[format] | api.v1.chatThreads | edit |
| editApiV1ChatThread | get | /api/v1/chat-threads/[key]/edit | api.v1.chatThreads | edit |
| apiV1ChatThread | get | /api/v1/chat-threads/[key].[format] | api.v1.chatThreads | show |
| apiV1ChatThread | get | /api/v1/chat-threads/[key] | api.v1.chatThreads | show |
| apiV1ChatThread | patch | /api/v1/chat-threads/[key].[format] | api.v1.chatThreads | update |
| apiV1ChatThread | patch | /api/v1/chat-threads/[key] | api.v1.chatThreads | update |
| apiV1ChatThread | put | /api/v1/chat-threads/[key].[format] | api.v1.chatThreads | update |
| apiV1ChatThread | put | /api/v1/chat-threads/[key] | api.v1.chatThreads | update |
| apiV1ChatThread | delete | /api/v1/chat-threads/[key].[format] | api.v1.chatThreads | delete |
| apiV1ChatThread | delete | /api/v1/chat-threads/[key] | api.v1.chatThreads | delete |
| apiV1CreateChatMessage | post | /api/v1/chat-threads/[key]/chat-messages | api.v1.chatMessages | create |
| apiV1ResetUnreadCount | post | /api/v1/chat-threads/[key]/reset-unread | api.v1.chatThreads | reset |
| apiV1UserLocations | get | /api/v1/user-locations.[format] | api.v1.userLocations | index |
| apiV1UserLocations | get | /api/v1/user-locations | api.v1.userLocations | index |
| apiV1UserLocations | post | /api/v1/user-locations.[format] | api.v1.userLocations | create |
| apiV1UserLocations | post | /api/v1/user-locations | api.v1.userLocations | create |
| apiV1LocationCheck | post | /api/v1/user-locations/locationCheck | api.v1.userLocations | locationCheck |
| apiV1GetDocuments | get | /api/v1/get-documents | api.v1.documents | index |
| apiV1GetDocument | get | /api/v1/get-document | api.v1.documents | show |
| getMembersApiV1Organizations | get | /api/v1/organizations/members | api.v1.organizationMembers | index |
| createMemberApiV1Organizations | post | /api/v1/organizations/members | api.v1.organizationMembers | create |
| removeMemberApiV1Organizations | delete | /api/v1/organizations/members/[key] | api.v1.organizationMembers | remove |
| addMemberToGroupApiV1Organizations | post | /api/v1/groups/[groupKey]/members | api.v1.organizationMembers | addMemberToGroup |
| removeMemberFromGroupApiV1Organizations | delete | /api/v1/groups/[groupKey]/members/[memberKey] | api.v1.organizationMembers | removeMemberFromGroup |
| addAdminApiV1Organizations | post | /api/v1/groups/[groupKey]/addAdmin | api.v1.organizationMembers | addAdmin |
| removeAdminApiV1Organizations | delete | /api/v1/groups/[groupKey]/removeAdmin/[memberKey] | api.v1.organizationMembers | removeAdmin |
| updateMemberApiV1Organizations | put | /api/v1/organizations/members/[key] | api.v1.organizationMembers | update |
| setTMFieldsApiV1Organizations | post | /api/v1/organizations/[key]/tm-set-custom-fields | api.v1.organizations | setTMFields |
| setPrerequisitesApiV1Organizations | post | /api/v1/organizations/[key]/tm-set-prerequisites | api.v1.organizations | setPrerequisites |
| setSettingsApiV1Organizations | post | /api/v1/organizations/[key]/tm-set-settings | api.v1.organizations | setSettings |
| updateCategoryApiV1Organizations | put | /api/v1/organizations/[key]/categories | api.v1.organizations | updateCategory |
| deleteCategoryApiV1Organizations | delete | /api/v1/organizations/[key]/categories/[categoryKey] | api.v1.organizations | deleteCategory |
| updateStatusApiV1Organizations | put | /api/v1/organizations/[key]/statuses | api.v1.organizations | updateStatus |
| deleteStatusApiV1Organizations | delete | /api/v1/organizations/[key]/statuses/[index] | api.v1.organizations | deleteStatus |
| updateLogoApiV1Organizations | put | /api/v1/organizations/[key]/update-logo/[fileKey] | api.v1.organizations | updateLogo |
| getLogoURLApiV1Organizations | get | /api/v1/organizations/[key]/get-logo-url | api.v1.organizations | getLogoURL |
| removeLogoApiV1Organizations | delete | /api/v1/organizations/[key]/remove-logo | api.v1.organizations | removeLogo |
| subscriptionStatusApiV1Organizations | get | /api/v1/organizations/get-status | api.v1.organizations | getStatus |
| getAutoClockOutApiV1Organizations | get | /api/v1/organizations/clockout | api.v1.organizations | getAutoClockOut |
| updateAutoClockOutApiV1Organizations | put | /api/v1/organizations/clockout | api.v1.organizations | updateAutoClockOut |
| getBackgroundSettingsApiV1Organizations | get | /api/v1/organizations/location | api.v1.organizations | getBackgroundSettings |
| updateBackgroundSettingsApiV1Organizations | put | /api/v1/organizations/location | api.v1.organizations | updateBackgroundSettings |
| getMenuSettingsApiV1Organizations | get | /api/v1/organizations/menu | api.v1.organizations | getMenuSettings |
| updateMenuSettingsApiV1Organizations | put | /api/v1/organizations/menu | api.v1.organizations | updateMenuSettings |
| setSubOrganizationTitleApiV1Organizations | put | /api/v1/organizations/[key]/set-sub-organization-title | api.v1.organizations | setSubOrganizationTitle |
| apiV1Organization | get | /api/v1/organizations/[key].[format] | api.v1.organizations | show |
| apiV1Organization | get | /api/v1/organizations/[key] | api.v1.organizations | show |
| apiV1GetUploadUrlWeb | post | /api/v1/jobs/[jobKey]/attachments/get-upload-url | api.v1.jobAttachments | getUploadURL |
| apiV1GetExistingURL | get | /api/v1/custom-forms/attachments/existing-url | api.v1.formAttachments | getExistingURL |
| apiV1GetAttachmentPDF | post | /api/v1/form-attachments/get-attachment-pdf | api.v1.formAttachments | getAttachmentPDF |
| apiV1GetUploadUrlWeb | post | /api/v1/custom-forms/[formKey]/attachments/get-upload-url | api.v1.formAttachments | getUploadURL |
| apiV1AddTemplate | post | /api/v1/jobs/attachments/add-template | api.v1.jobAttachments | addTemplate |
| apiV1GetJobDefaults | get | /api/v1/jobs/get-job-defaults | api.v1.jobs | getJobDefaults |
| apiV1GetTemplateAttachments | get | /api/v1/jobs/attachments/get-templates | api.v1.jobAttachments | getTemplateAttachments |
| apiV1JobCommands | get | /api/v1/jobs/command | api.v1.jobs | command |
| apiV1TaskCommands | get | /api/v1/tasks/command | api.v1.jobTasks | command |
| apiV1JobComments | get | /api/v1/jobs/[jobKey]/comments.[format] | api.v1.jobComments | index |
| apiV1JobComments | get | /api/v1/jobs/[jobKey]/comments | api.v1.jobComments | index |
| apiV1JobComments | post | /api/v1/jobs/[jobKey]/comments.[format] | api.v1.jobComments | create |
| apiV1JobComments | post | /api/v1/jobs/[jobKey]/comments | api.v1.jobComments | create |
| apiV1JobTaskAttachments | get | /api/v1/jobs/[jobKey]/tasks/[taskKey]/attachments.[format] | api.v1.taskAttachments | index |
| apiV1JobTaskAttachments | get | /api/v1/jobs/[jobKey]/tasks/[taskKey]/attachments | api.v1.taskAttachments | index |
| apiV1JobTaskAttachments | post | /api/v1/jobs/[jobKey]/tasks/[taskKey]/attachments.[format] | api.v1.taskAttachments | create |
| apiV1JobTaskAttachments | post | /api/v1/jobs/[jobKey]/tasks/[taskKey]/attachments | api.v1.taskAttachments | create |
| apiV1JobTaskComments | get | /api/v1/jobs/[jobKey]/tasks/[taskKey]/comments.[format] | api.v1.taskComments | index |
| apiV1JobTaskComments | get | /api/v1/jobs/[jobKey]/tasks/[taskKey]/comments | api.v1.taskComments | index |
| apiV1JobTaskComments | post | /api/v1/jobs/[jobKey]/tasks/[taskKey]/comments.[format] | api.v1.taskComments | create |
| apiV1JobTaskComments | post | /api/v1/jobs/[jobKey]/tasks/[taskKey]/comments | api.v1.taskComments | create |
| apiV1JobTasks | get | /api/v1/jobs/[jobKey]/tasks.[format] | api.v1.jobTasks | index |
| apiV1JobTasks | get | /api/v1/jobs/[jobKey]/tasks | api.v1.jobTasks | index |
| apiV1JobTasks | post | /api/v1/jobs/[jobKey]/tasks.[format] | api.v1.jobTasks | create |
| apiV1JobTasks | post | /api/v1/jobs/[jobKey]/tasks | api.v1.jobTasks | create |
| apiV1JobTask | get | /api/v1/jobs/[jobKey]/tasks/[key].[format] | api.v1.jobTasks | show |
| apiV1JobTask | get | /api/v1/jobs/[jobKey]/tasks/[key] | api.v1.jobTasks | show |
| apiV1JobTask | patch | /api/v1/jobs/[jobKey]/tasks/[key].[format] | api.v1.jobTasks | update |
| apiV1JobTask | patch | /api/v1/jobs/[jobKey]/tasks/[key] | api.v1.jobTasks | update |
| apiV1JobTask | put | /api/v1/jobs/[jobKey]/tasks/[key].[format] | api.v1.jobTasks | update |
| apiV1JobTask | put | /api/v1/jobs/[jobKey]/tasks/[key] | api.v1.jobTasks | update |
| apiV1JobTask | delete | /api/v1/jobs/[jobKey]/tasks/[key].[format] | api.v1.jobTasks | delete |
| apiV1JobTask | delete | /api/v1/jobs/[jobKey]/tasks/[key] | api.v1.jobTasks | delete |
| taskAttachmentApiV1Jobs | delete | /api/v1/task-attachments/[key] | api.v1.taskAttachments | delete |
| apiV1JobAttachments | get | /api/v1/jobs/[jobKey]/attachments.[format] | api.v1.jobAttachments | index |
| apiV1JobAttachments | get | /api/v1/jobs/[jobKey]/attachments | api.v1.jobAttachments | index |
| jobAttachmentApiV1Jobs | delete | /api/v1/job-attachments/[key] | api.v1.jobAttachments | delete |
| jobAttachmentApiV1Jobs | put | /api/v1/job-attachments/[key] | api.v1.jobAttachments | update |
| templateAttachmentApiV1Jobs | delete | /api/v1/template-attachments/[key] | api.v1.jobAttachments | deleteTemplate |
| apiV1Jobs | get | /api/v1/jobs.[format] | api.v1.jobs | index |
| apiV1Jobs | get | /api/v1/jobs | api.v1.jobs | index |
| apiV1Jobs | post | /api/v1/jobs.[format] | api.v1.jobs | create |
| apiV1Jobs | post | /api/v1/jobs | api.v1.jobs | create |
| newApiV1Job | get | /api/v1/jobs/new.[format] | api.v1.jobs | new |
| newApiV1Job | get | /api/v1/jobs/new | api.v1.jobs | new |
| apiV1Job | get | /api/v1/jobs/[key].[format] | api.v1.jobs | show |
| apiV1Job | get | /api/v1/jobs/[key] | api.v1.jobs | show |
| apiV1Job | patch | /api/v1/jobs/[key].[format] | api.v1.jobs | update |
| apiV1Job | patch | /api/v1/jobs/[key] | api.v1.jobs | update |
| apiV1Job | put | /api/v1/jobs/[key].[format] | api.v1.jobs | update |
| apiV1Job | put | /api/v1/jobs/[key] | api.v1.jobs | update |
| apiV1Job | delete | /api/v1/jobs/[key].[format] | api.v1.jobs | delete |
| apiV1Job | delete | /api/v1/jobs/[key] | api.v1.jobs | delete |
| apiV1Communications | get | /api/v1/communications.[format] | api.v1.communications | index |
| apiV1Communications | get | /api/v1/communications | api.v1.communications | index |
| apiV1Communications | post | /api/v1/communications.[format] | api.v1.communications | create |
| apiV1Communications | post | /api/v1/communications | api.v1.communications | create |
| apiV1Communication | get | /api/v1/communications/[key].[format] | api.v1.communications | show |
| apiV1Communication | get | /api/v1/communications/[key] | api.v1.communications | show |
| apiV1Communication | patch | /api/v1/communications/[key].[format] | api.v1.communications | update |
| apiV1Communication | patch | /api/v1/communications/[key] | api.v1.communications | update |
| apiV1Communication | put | /api/v1/communications/[key].[format] | api.v1.communications | update |
| apiV1Communication | put | /api/v1/communications/[key] | api.v1.communications | update |
| apiV1Communication | delete | /api/v1/communications/[key].[format] | api.v1.communications | delete |
| apiV1Communication | delete | /api/v1/communications/[key] | api.v1.communications | delete |
| apiV1CalendarNotes | get | /api/v1/calendar-notes.[format] | api.v1.calendarNotes | index |
| apiV1CalendarNotes | get | /api/v1/calendar-notes | api.v1.calendarNotes | index |
| apiV1CalendarNotes | post | /api/v1/calendar-notes.[format] | api.v1.calendarNotes | create |
| apiV1CalendarNotes | post | /api/v1/calendar-notes | api.v1.calendarNotes | create |
| apiV1CalendarNote | get | /api/v1/calendar-notes/[key].[format] | api.v1.calendarNotes | show |
| apiV1CalendarNote | get | /api/v1/calendar-notes/[key] | api.v1.calendarNotes | show |
| apiV1CalendarNote | patch | /api/v1/calendar-notes/[key].[format] | api.v1.calendarNotes | update |
| apiV1CalendarNote | patch | /api/v1/calendar-notes/[key] | api.v1.calendarNotes | update |
| apiV1CalendarNote | put | /api/v1/calendar-notes/[key].[format] | api.v1.calendarNotes | update |
| apiV1CalendarNote | put | /api/v1/calendar-notes/[key] | api.v1.calendarNotes | update |
| apiV1CalendarNote | delete | /api/v1/calendar-notes/[key].[format] | api.v1.calendarNotes | delete |
| apiV1CalendarNote | delete | /api/v1/calendar-notes/[key] | api.v1.calendarNotes | delete |
| apiV1Communications.documents | get | /api/v1/communications/documents | api.v1.communications | getCommunicationDocuments |
| apiV1CustomForms | get | /api/v1/custom-forms.[format] | api.v1.customForms | index |
| apiV1CustomForms | get | /api/v1/custom-forms | api.v1.customForms | index |
| apiV1CustomForms | post | /api/v1/custom-forms.[format] | api.v1.customForms | create |
| apiV1CustomForms | post | /api/v1/custom-forms | api.v1.customForms | create |
| apiV1CustomForm | patch | /api/v1/custom-forms/[key].[format] | api.v1.customForms | update |
| apiV1CustomForm | patch | /api/v1/custom-forms/[key] | api.v1.customForms | update |
| apiV1CustomForm | put | /api/v1/custom-forms/[key].[format] | api.v1.customForms | update |
| apiV1CustomForm | put | /api/v1/custom-forms/[key] | api.v1.customForms | update |
| apiV1UpdateFormFields | put | /api/v1/custom-forms/fields/[key] | api.v1.customForms | updateFormFields |
| apiV1FormAttachments | get | /api/v1/form-attachments.[format] | api.v1.formAttachments | index |
| apiV1FormAttachments | get | /api/v1/form-attachments | api.v1.formAttachments | index |
| apiV1FormAttachment | patch | /api/v1/form-attachments/[key].[format] | api.v1.formAttachments | update |
| apiV1FormAttachment | patch | /api/v1/form-attachments/[key] | api.v1.formAttachments | update |
| apiV1FormAttachment | put | /api/v1/form-attachments/[key].[format] | api.v1.formAttachments | update |
| apiV1FormAttachment | put | /api/v1/form-attachments/[key] | api.v1.formAttachments | update |
| apiV1FormAttachments | delete | /api/v1/form-attachments/[key] | api.v1.formAttachments | delete |
| apiV1AttachmentsForMultipleTasks | get | /api/v1/task-attachments/multiple-tasks | api.v1.taskAttachments | attachmentsForMultipleTasks |
| apiV1FormResults | get | /api/v1/form-results.[format] | api.v1.formResults | index |
| apiV1FormResults | get | /api/v1/form-results | api.v1.formResults | index |
| apiV1FormResults | post | /api/v1/form-results.[format] | api.v1.formResults | create |
| apiV1FormResults | post | /api/v1/form-results | api.v1.formResults | create |
| apiV1Customers | get | /api/v1/customers.[format] | api.v1.customers | index |
| apiV1Customers | get | /api/v1/customers | api.v1.customers | index |
| apiV1Customers | post | /api/v1/customers.[format] | api.v1.customers | create |
| apiV1Customers | post | /api/v1/customers | api.v1.customers | create |
| newApiV1Customer | get | /api/v1/customers/new.[format] | api.v1.customers | new |
| newApiV1Customer | get | /api/v1/customers/new | api.v1.customers | new |
| apiV1Customer | get | /api/v1/customers/[key].[format] | api.v1.customers | show |
| apiV1Customer | get | /api/v1/customers/[key] | api.v1.customers | show |
| apiV1Customer | patch | /api/v1/customers/[key].[format] | api.v1.customers | update |
| apiV1Customer | patch | /api/v1/customers/[key] | api.v1.customers | update |
| apiV1Customer | put | /api/v1/customers/[key].[format] | api.v1.customers | update |
| apiV1Customer | put | /api/v1/customers/[key] | api.v1.customers | update |
| apiV1Customer | delete | /api/v1/customers/[key].[format] | api.v1.customers | delete |
| apiV1Customer | delete | /api/v1/customers/[key] | api.v1.customers | delete |
| apiV1UpdateReportTime | put | /api/v1/reports/time-clock-report/[key] | api.v1.reports | updateRecord |
| apiV1AddReportTime | put | /api/v1/reports/add/time-clock-report/[key] | api.v1.reports | addRecord |
| apiV1ScheduleTimeClocks | get | /api/v1/schedule/time-clock | api.v1.schedule | scheduleTimeClocks |
| apiV1ReportTime | get | /api/v1/reports/time-clock-report | api.v1.reports | timeReport |
| apiV1ReportUser | get | /api/v1/reports/user-report | api.v1.reports | userReport |
| apiV1ReportAttachment | get | /api/v1/reports/attachment-report/print | api.v1.reports | attachmentReportPrint |
| apiV1ReportFormsForUser | get | /api/v1/reports/user-report/forms | api.v1.reports | getFormInfo |
| apiV1ReportTimePrint | post | /api/v1/reports/time-clock-report/print | api.v1.reports | timeClockReportPrint |
| apiV1ReportTask | get | /api/v1/reports/task-report/print | api.v1.reports | taskReportPrint |
| apiV1AllTasks | get | /api/v1/schedule/tasks | api.v1.jobTasks | index |
| apiV1CalendarTasks | get | /api/v1/schedule/tasks/calendar | api.v1.jobTasks | getCalendarTasks |
| apiV1GetFile | get | /api/v1/get-file | api.v1.customForms | getFile |
| apiV1Groups | get | /api/v1/groups.[format] | api.v1.organizationGroups | index |
| apiV1Groups | get | /api/v1/groups | api.v1.organizationGroups | index |
| apiV1Groups | post | /api/v1/groups.[format] | api.v1.organizationGroups | create |
| apiV1Groups | post | /api/v1/groups | api.v1.organizationGroups | create |
| apiV1Group | patch | /api/v1/groups/[key].[format] | api.v1.organizationGroups | update |
| apiV1Group | patch | /api/v1/groups/[key] | api.v1.organizationGroups | update |
| apiV1Group | put | /api/v1/groups/[key].[format] | api.v1.organizationGroups | update |
| apiV1Group | put | /api/v1/groups/[key] | api.v1.organizationGroups | update |
| apiV1GetGroupRoles | get | /api/v1/groups/[key]/roles | api.v1.organizationGroups | getRoles |
| apiV1UpdateGroupRoles | put | /api/v1/groups/[key]/roles | api.v1.organizationGroups | updateRole |
| apiV1Tags | get | /api/v1/tags.[format] | api.v1.tags | index |
| apiV1Tags | get | /api/v1/tags | api.v1.tags | index |
| apiV1Tags | post | /api/v1/tags.[format] | api.v1.tags | create |
| apiV1Tags | post | /api/v1/tags | api.v1.tags | create |
| apiV1Tags | delete | /api/v1/tags/[key] | api.v1.tags | delete |
| apiV1Tags | put | /api/v1/tags/[key] | api.v1.tags | update |
| apiV1Sub-organizations | get | /api/v1/sub-organizations.[format] | api.v1.subOrganizations | index |
| apiV1Sub-organizations | get | /api/v1/sub-organizations | api.v1.subOrganizations | index |
| apiV1Sub-organizations | post | /api/v1/sub-organizations.[format] | api.v1.subOrganizations | create |
| apiV1Sub-organizations | post | /api/v1/sub-organizations | api.v1.subOrganizations | create |
| apiV1Sub-organization | get | /api/v1/sub-organization | api.v1.subOrganizations | getSubOrgForJob |
| apiV1Sub-organizations | put | /api/v1/sub-organizations/[key] | api.v1.subOrganizations | update |
| apiV1Sub-organizations | delete | /api/v1/sub-organizations/[key] | api.v1.subOrganizations | delete |
| apiV1Payments | get | /api/v1/payments.[format] | api.v1.payments | index |
| apiV1Payments | get | /api/v1/payments | api.v1.payments | index |
| apiV1Payments | post | /api/v1/payments.[format] | api.v1.payments | create |
| apiV1Payments | post | /api/v1/payments | api.v1.payments | create |
| apiV1Payment | patch | /api/v1/payments/[key].[format] | api.v1.payments | update |
| apiV1Payment | patch | /api/v1/payments/[key] | api.v1.payments | update |
| apiV1Payment | put | /api/v1/payments/[key].[format] | api.v1.payments | update |
| apiV1Payment | put | /api/v1/payments/[key] | api.v1.payments | update |
| apiV1Payment | delete | /api/v1/payments/[key].[format] | api.v1.payments | delete |
| apiV1Payment | delete | /api/v1/payments/[key] | api.v1.payments | delete |
| apiV1GetSubscriptionPlan | get | /api/v1/get-subscription-plan | api.v1.organizations | getSubscriptionPlan |
| apiV1NewSubscription | post | /api/v1/new-subscription | api.v1.organizations | newSubscription |
| apiV1CancelSubscription | put | /api/v1/cancel-subscription | api.v1.organizations | cancelSubscription |
| apiV1GetDefaultPayment | get | /api/v1/default-payment | api.v1.payments | getDefaultPayment |
| apiV1GetStripeInvoice | get | /api/v1/stripe/get-invoice | api.v1.organizations | getInvoice |
| apiV1GetAccountInfo | get | /api/v1/account/getAccountInfo | api.v1.userAccount | index |
| apiV1UpdateAccountInfo | put | /api/v1/account/updateAccountInfo | api.v1.userAccount | update |
| apiV1LoginUser | post | /api/v1/account/login | api.v1.APIController | loginUser |
| apiV1ForgetPassword | post | /api/v1/account/login/forget | api.v1.APIController | forgetPassword |
| apiV1ResetPassword | post | /api/v1/account/login/reset | api.v1.APIController | resetPassword |
| apiV1SignupUser | post | /api/v1/account/signup | api.v1.APIController | signupUser |
| apiV1Users | get | /api/v1/users.[format] | api.v1.users | index |
| apiV1Users | get | /api/v1/users | api.v1.users | index |
| apiV1CellSearch | get | /api/v1/cells/search | api.v1.cells | search |
| apiV1Cell | delete | /api/v1/cells/[key] | api.v1.cells | delete |
| apiV1CellAttachment | delete | /api/v1/cell-attachments/[key] | api.v1.cellAttachments | delete |
| apiV1SheetShareWithUser | post | /api/v1/sheets/[key]/share-with-user | api.v1.sheets | shareWithUser |
| apiV1SheetUnshareWithUser | post | /api/v1/sheets/[key]/unshare-with-user | api.v1.sheets | unshareWithUser |
| apiV1SheetRemoveFromSharedUsers | post | /api/v1/sheets/[key]/remove-from-shared-users | api.v1.sheets | removeFromSharedUsers |
| apiV1ShareRequest | delete | /api/v1/share-requests/[key] | api.v1.shareRequests | delete |
| apiV1ShareRequestAccept | post | /api/v1/share-requests/accept | api.v1.shareRequests | accept |
| apiV1ShareRequestReject | post | /api/v1/share-requests/reject | api.v1.shareRequests | reject |
| apiV1ProSignup | post | /api/v1/clients/signup/pro | api.v1.clients | proSignup |
| apiV1ClientRoles | get | /api/v1/clients/roles | api.v1.clients | roles |
| apiV1ClientCreateUserSession | post | /api/v1/clients/user-session | api.v1.clients | createUserSession |
| apiV1ClientUpdateFirebaseMessagingToken | post | /api/v1/clients/firebase-messaging-token | api.v1.clients | updateFirebaseMessagingToken |
| apiV1ClientUpdateUserStatus | post | /api/v1/clients/user-status | api.v1.clients | updateUserStatus |
| apiV1GetUploadUrl | get | /api/v1/attachments/[key]/get-upload-url | api.v1.attachments | getUploadURL |
| apiV1GetMapMode | get | /api/v1/map-mode | api.v1.organizations | getMapMode |
| apiV1UpdateMapMode | put | /api/v1/map-mode | api.v1.organizations | updateMapMode |
| apiV1HandleUpload | post | /api/v1/attachments/handle-upload | api.v1.attachments | handleUpload |
| apiV1HandleUploaded | post | /api/v1/attachments/handle-uploaded | api.v1.attachments | handleUploaded |
| apiV1HandleDeleted | post | /api/v1/attachments/handle-deleted | api.v1.attachments | handleDeleted |
| apiV1HandleStripeCallback | post | /api/v1/stripe/handle-request | api.v1.stripe | handleRequest |
| root | get | / | public.client | login |
Routes
| Name | Method | Pattern | Controller | Action |
|---|---|---|---|---|
| wheelsInfo | get | /wheels/info | wheels.public | info |
| wheelsRoutes | get | /wheels/routes | wheels.public | routes |
| wheelsRouteTester | post | /wheels/route-tester | wheels.public | routetester |
| wheelsPackages | get | /wheels/packages/[type] | wheels.public | packages |
| wheelsMigratorTemplates | get | /wheels/migrator/templates | wheels.public | migratortemplates |
| wheelsMigratorTemplatesCreate | post | /wheels/migrator/templates | wheels.public | migratortemplatescreate |
| wheelsMigratorSQL | get | /wheels/migrator/sql/[version] | wheels.public | migratorsql |
| wheelsMigratorCommand | post | /wheels/migrator/[command]/[version] | wheels.public | migratorcommand |
| wheelsMigrator | get | /wheels/migrator | wheels.public | migrator |
| wheelsTests | get | /wheels/tests/[type] | wheels.public | tests |
| wheelsDocs | get | /wheels/docs | wheels.public | docs |
| wheelsCli | get | /wheels/cli | wheels.public | cli |
| wheelsPluginEntry | get | /wheels/plugins/[name] | wheels.public | pluginentry |
| wheelsPluginPost | post | /wheels/plugins/[name] | wheels.public | pluginentry |
| wheelsPlugins | get | /wheels/plugins | wheels.public | plugins |
| wheelsBuild | get | /wheels/build | wheels.public | build |
| wheelsLegacy | get | /wheels/wheels/[view] | wheels.public | legacy |
| wheelsRoot | get | /wheels | wheels.public | index |