- Auth
- Account Ledger
- Activity Log
- Announcement
- Asset
- Sales
- GetTotalRevenue
- GetTotalReceivables
- GetTotalInwardPayment
- GetTotalOverDuePayment
- SalesRatio
- GetGrowthByMonth
- GetGrowthByQuarter
- GetGrowthByYear
- GetSnapshotReceivables
- GetSalesByInvoiceTypes
- GetIncomeByInvoiceTypes
- GetGstInvoices
- GetRecurringInvoices
- GetClientsAcquired
- GetSalesByMonthGraph
- GetSalesByYearGraph
- GetSalesByProductGraph
- GetSalesByServiceGraph
- GetSalesByClientGraph
- GetSalesByCountryGraph
- GetSalesByUserGraph
- GetRevenueBySource
- GetSalesByRegionGraph
- Client
- Client Ledger
- CreditNote
- Cron-jobs
- Currency Conversion
- Document
- Discount
- Employee
- GetEmployeesByMonth
- GetEmployees
- AddEmployee
- GetEmployeeDetail
- UpdateEmployee
- DeleteEmployee
- FileImport
- UpdateSalaryComponent
- UpdateFileUrl
- UpdateInvoiceNumber
- PrepareSalaryComponents
- UpdateEmployeeName
- UpdateEmployeeEmail
- UpdateEmployeePhone
- UpdateEmployeeDob
- UpdateEmployeeLocation
- UpdateEmployeePanNumber
- UpdateEmployeeAdharNumber
- UpdateEmployeeEsiNumber
- UpdateEmployeeEpsNumber
- UpdateEmployeeUanNumber
- UpdateEmployeePfNumber
- UpdateEmployeeCountry
- UpdateEmployeeBankAccountDetails
- UpdateEmployeeCurrentAddress
- UpdateEmployeePermanentAddress
- LinkUser
- UpdateEmployeeDocumentInfo
- UpdateEmployeeProfilePicture
- Email
- Expense
- File
- Hr
- Inventory Ledger
- Invoice
- Item
- Organization
- GetOrganizationsGET
- AddOrganizationPOST
- UpdateOrganizationPUT
- GetOrganizationDetailGET
- DeleteOrganizationDELETE
- UpdateOrganizationBusinessProfilePATCH
- ExtendSubscriptionPATCH
- UpdateGSTDetailsPATCH
- UpdateVATDetailsPATCH
- UpdateInvoiceOnOrderSettingPATCH
- UpdateReminderSettingPATCH
- UpdateInvoiceSettingsPATCH
- UpdatePurchaseOrderSettingsPATCH
- UpdateProposalSettingsPATCH
- UpdatePreferencesPATCH
- GetOrganizationPreferencesGET
- UpdatePaymentSettingsPATCH
- UpdateDefaultPaymentSettingsPATCH
- UpdateLogoPATCH
- UpdateFromEmailPATCH
- OrganizationDeactivePATCH
- GetOrganizationSubscriptionsGET
- GetOrganizationDashboardViewGET
- GetOrganizationDashboardSnapshotGET
- GetSnapshotReceivablesGET
- DeleteSelectiveDataDELETE
- DeletePermanentDELETE
- GetClientCountriesGET
- GetVendorCountriesGET
- GetLeadCountriesGET
- InviteUsersPOST
- AcceptInvitationGET
- UpdatePlatformCreditsPATCH
- UpdateCreditNoteSettingsPATCH
- UpdateDebitNoteSettingsPATCH
- Order
- Outward Payment
- Operations
- Payment
- Product
- Proposal
- Platform Plan
- Platform Subscription
- Platform Payment
- ProductCategory
- Purchase Order
- Purchase
- Recurring Expense
- Recurring Invoice
- Report
- GetSalesByClient
- GetSalesByProduct
- GetSalesByProductCategory
- GetSalesByService
- GetSalesByMonth
- GetSalesByYear
- GetSalesByQuarter
- GetSalesByCountry
- GetTaxSummary
- GetInvoiceDetailReport
- GetExpensesByMonth
- GetProfitAndLossReportV2
- GetBalanceSheetReport
- GetTrialBalanceReport
- GetGeneralLedger
- GetSalesByHsn
- GetTaxesByMonth
- GetOtherSales
- Routes
- Settlement
- Services
- Tax
- Trip
- User
- User Invites
- Vendor
- Vendor Ledger
- Projects
- Pre Sales
- Task
- Payroll
- Account
- Enquiry
- Account Transfer
- File Import
- File Import Error
- Brand
- Salary Component
- Leaves Configuration
- Tax Calendar
- Contract
- GST-Reports
- Organization Backup
- Bank Account
- Leave Policy
- Leave Application
- Backup Restore
- Finance
- Email-Rule
- Widget
- User Dashboard
- ExpenseCategory
- Lead
- LeadActivity
- Deal
- DebitNote
- SpendCategory
- SpendPolicy
- Employee Spend
- Warehouse
- Branch
GetOrganizationDashboardView
GET
https://api.upbooks.io/api/v1/organization/dashboard/view
Organization
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
ORGANIZATION-ID
stringÂ
optional
Example:
000000
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.upbooks.io/api/v1/organization/dashboard/view' \
--header 'ORGANIZATION-ID: 000000'
Responses
🟢200Ok
application/json
Body
data
object (IOrganizationDashboardViewRes)Â
required
hasAtleastOneProduct
booleanÂ
required
hasAtleastOneService
booleanÂ
required
hasAtleastOneOrder
booleanÂ
required
hasAtleastOneInvoice
booleanÂ
required
hasAtleastOneEmployee
booleanÂ
required
hasOrganizationTaxConfigured
booleanÂ
required
hasOnlinePaymentsConfigured
booleanÂ
required
message
stringÂ
optional
Example
{
"data": {
"hasAtleastOneProduct": true,
"hasAtleastOneService": true,
"hasAtleastOneOrder": true,
"hasAtleastOneInvoice": true,
"hasAtleastOneEmployee": true,
"hasOrganizationTaxConfigured": true,
"hasOnlinePaymentsConfigured": true
},
"message": "string"
}
🟢200Success
Modified at 2024-04-09 12:11:41