korona-cloud-client

KoronaCloudClient - the Ruby gem for the KORONA.cloud API v3

Our api provides access to our cloud services

This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 2.13.40
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.RubyClientCodegen

Installation

Build a gem

To build the Ruby code into a gem:

gem build korona-cloud-client.gemspec

Then either install the gem locally:

gem install ./korona-cloud-client-1.0.0.gem

(for development, run gem install --dev ./korona-cloud-client-1.0.0.gem to install the development dependencies)

or publish the gem to a gem hosting service, e.g. RubyGems.

Finally add this to the Gemfile:

gem 'korona-cloud-client', '~> 1.0.0'

Install from Git

If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:

gem 'korona-cloud-client', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'

Include the Ruby code directly

Include the Ruby code directly using -I as follows:

ruby -Ilib script.rb

Getting Started

Please follow the installation procedure and then run the following code:

# Load the gem
require 'korona-cloud-client'

# Setup authorization
KoronaCloudClient.configure do |config|
  # Configure HTTP basic authorization: basicAuth
  config.username = 'YOUR_USERNAME'
  config.password = 'YOUR_PASSWORD'
end

api_instance = KoronaCloudClient::AccountsApi.new
 = 'korona_account_id_example' # String | account id of the KORONA.cloud account
 = 'account_id_example' # String | id of the related object (important: id should match the uuid-format)

begin
  #returns the single account
  result = api_instance.(, )
  p result
rescue KoronaCloudClient::ApiError => e
  puts "Exception when calling AccountsApi->get_account: #{e}"
end

Documentation for API Endpoints

All URIs are relative to https://www.koronacloud.com/web/api/v3

Class Method HTTP request Description
KoronaCloudClient::AccountsApi get_account GET /accounts/koronaAccountId/accounts/accountId returns the single account
KoronaCloudClient::AccountsApi get_accounts GET /accounts/koronaAccountId/accounts lists all accounts
KoronaCloudClient::AdditionalReceiptInfoTypesApi get_additional_receipt_info_type GET /accounts/koronaAccountId/additionalReceiptInfoTypes/additionalReceiptInfoTypeId returns the single additional receipt info type
KoronaCloudClient::AdditionalReceiptInfoTypesApi get_additional_receipt_info_types GET /accounts/koronaAccountId/additionalReceiptInfoTypes lists all additional receipt info types
KoronaCloudClient::AssortmentsApi add_assortments POST /accounts/koronaAccountId/assortments adds a batch of new assortments
KoronaCloudClient::AssortmentsApi delete_assortment DELETE /accounts/koronaAccountId/assortments/assortmentId deletes the single assortment
KoronaCloudClient::AssortmentsApi delete_assortments DELETE /accounts/koronaAccountId/assortments deletes a batch of assortments
KoronaCloudClient::AssortmentsApi get_assortment GET /accounts/koronaAccountId/assortments/assortmentId returns the single assortment
KoronaCloudClient::AssortmentsApi get_assortments GET /accounts/koronaAccountId/assortments lists all assortments
KoronaCloudClient::AssortmentsApi update_assortment PATCH /accounts/koronaAccountId/assortments/assortmentId updates the single assortment
KoronaCloudClient::AssortmentsApi update_assortments PATCH /accounts/koronaAccountId/assortments updates a batch of assortments
KoronaCloudClient::CashiersApi get_cashier GET /accounts/koronaAccountId/cashiers/cashierId returns the single cashier
KoronaCloudClient::CashiersApi get_cashiers GET /accounts/koronaAccountId/cashiers lists all cashiers
KoronaCloudClient::CommodityGroupsApi add_commodity_groups POST /accounts/koronaAccountId/commodityGroups adds a batch of new commodity groups
KoronaCloudClient::CommodityGroupsApi delete_commodity_group DELETE /accounts/koronaAccountId/commodityGroups/commodityGroupId deletes the single commodity group
KoronaCloudClient::CommodityGroupsApi delete_commodity_groups DELETE /accounts/koronaAccountId/commodityGroups deletes a batch of commodity groups
KoronaCloudClient::CommodityGroupsApi get_commodity_group GET /accounts/koronaAccountId/commodityGroups/commodityGroupId returns the single commodity group
KoronaCloudClient::CommodityGroupsApi get_commodity_groups GET /accounts/koronaAccountId/commodityGroups lists all commodity groups
KoronaCloudClient::CommodityGroupsApi update_commodity_group PATCH /accounts/koronaAccountId/commodityGroups/commodityGroupId updates the single commodity group
KoronaCloudClient::CommodityGroupsApi update_commodity_groups PATCH /accounts/koronaAccountId/commodityGroups updates a batch of commodity groups
KoronaCloudClient::CurrenciesApi get_currencies GET /accounts/koronaAccountId/currencies lists all currencies
KoronaCloudClient::CurrenciesApi get_currency GET /accounts/koronaAccountId/currencies/currencyId returns the single currency
KoronaCloudClient::CustomerGroupsApi get_customer_group GET /accounts/koronaAccountId/customerGroups/customerGroupId returns the single customer group
KoronaCloudClient::CustomerGroupsApi get_customer_groups GET /accounts/koronaAccountId/customerGroups lists all customer groups
KoronaCloudClient::CustomerOrdersApi add_customer_orders POST /accounts/koronaAccountId/customerOrders adds a batch of new customer orders
KoronaCloudClient::CustomerOrdersApi delete_customer_order DELETE /accounts/koronaAccountId/customerOrders/customerOrderId deletes the single customer order
KoronaCloudClient::CustomerOrdersApi get_customer_order GET /accounts/koronaAccountId/customerOrders/customerOrderId returns the single customer order
KoronaCloudClient::CustomerOrdersApi get_customer_orders GET /accounts/koronaAccountId/customerOrders lists all customer orders
KoronaCloudClient::CustomerOrdersApi update_customer_order PATCH /accounts/koronaAccountId/customerOrders/customerOrderId updates the single customer order
KoronaCloudClient::CustomerOrdersApi update_customer_orders PATCH /accounts/koronaAccountId/customerOrders updates a batch of customer orders
KoronaCloudClient::CustomersApi add_customers POST /accounts/koronaAccountId/customers adds a batch of new customers
KoronaCloudClient::CustomersApi delete_customer DELETE /accounts/koronaAccountId/customers/customerId deletes the single customer
KoronaCloudClient::CustomersApi delete_customers DELETE /accounts/koronaAccountId/customers deletes a batch of customers
KoronaCloudClient::CustomersApi get_customer GET /accounts/koronaAccountId/customers/customerId returns the single customer
KoronaCloudClient::CustomersApi get_customers GET /accounts/koronaAccountId/customers lists all customers
KoronaCloudClient::CustomersApi update_customer PATCH /accounts/koronaAccountId/customers/customerId updates the single customer
KoronaCloudClient::CustomersApi update_customers PATCH /accounts/koronaAccountId/customers updates a batch of customers
KoronaCloudClient::DeliveryNotesApi add_delivery_notes POST /accounts/koronaAccountId/deliveryNotes adds delivery notes
KoronaCloudClient::DeliveryNotesApi book_delivery_note PATCH /accounts/koronaAccountId/deliveryNotes/deliveryNoteId/book book the single delivery note
KoronaCloudClient::DeliveryNotesApi finalize_delivery_note PATCH /accounts/koronaAccountId/deliveryNotes/deliveryNoteId/finalize finalize the single delivery note
KoronaCloudClient::DeliveryNotesApi get_delivery_note GET /accounts/koronaAccountId/deliveryNotes/deliveryNoteId returns a single delivery note
KoronaCloudClient::DeliveryNotesApi get_delivery_notes GET /accounts/koronaAccountId/deliveryNotes lists all delivery notes
KoronaCloudClient::EconomicZonesApi get_economic_zone GET /accounts/koronaAccountId/economicZones/economicZoneId returns the single economic zone
KoronaCloudClient::EconomicZonesApi get_economic_zones GET /accounts/koronaAccountId/economicZones lists all economic zones
KoronaCloudClient::ExternalSystemCallsApi add_external_system_calls POST /accounts/koronaAccountId/externalSystemCalls adds a batch of new external system calls
KoronaCloudClient::ExternalSystemCallsApi delete_external_system_call DELETE /accounts/koronaAccountId/externalSystemCalls/externalSystemCallId deletes a single external system call
KoronaCloudClient::ExternalSystemCallsApi delete_external_system_calls DELETE /accounts/koronaAccountId/externalSystemCalls deletes a batch of external system calls
KoronaCloudClient::ExternalSystemCallsApi get_external_system_call GET /accounts/koronaAccountId/externalSystemCalls/externalSystemCallId returns a single external system call
KoronaCloudClient::ExternalSystemCallsApi get_external_system_calls GET /accounts/koronaAccountId/externalSystemCalls lists all external system calls
KoronaCloudClient::ExternalSystemCallsApi update_external_system_call PATCH /accounts/koronaAccountId/externalSystemCalls/externalSystemCallId updates the single external system call
KoronaCloudClient::ExternalSystemCallsApi update_external_system_calls PATCH /accounts/koronaAccountId/externalSystemCalls updates a batch of external system calls
KoronaCloudClient::ImagesApi get_image GET /accounts/koronaAccountId/images/imageId displays the image
KoronaCloudClient::InfoTextsApi get_info_text GET /accounts/koronaAccountId/infoTexts/infoTextId returns the single info text
KoronaCloudClient::InfoTextsApi get_info_texts GET /accounts/koronaAccountId/infoTexts lists all info texts
KoronaCloudClient::InventoriesApi add_inventories POST /accounts/koronaAccountId/inventories adds a batch of new inventories
KoronaCloudClient::InventoriesApi add_inventory_inventory_list_items POST /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items adds inventory list items
KoronaCloudClient::InventoriesApi delete_inventory DELETE /accounts/koronaAccountId/inventories/inventoryId deletes the single inventory (only allowed if hasBookedReceipts=false)
KoronaCloudClient::InventoriesApi delete_inventory_inventory_list_item DELETE /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items/productId deletes the single inventory list item
KoronaCloudClient::InventoriesApi get_inventories GET /accounts/koronaAccountId/inventories lists all inventories
KoronaCloudClient::InventoriesApi get_inventory GET /accounts/koronaAccountId/inventories/inventoryId returns the single inventory
KoronaCloudClient::InventoriesApi get_inventory_inventory_list GET /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId returns the single inventory list
KoronaCloudClient::InventoriesApi get_inventory_inventory_list_item GET /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items/productId returns the single inventory list item
KoronaCloudClient::InventoriesApi get_inventory_inventory_list_items GET /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items lists all inventory list items
KoronaCloudClient::InventoriesApi get_inventory_inventory_lists GET /accounts/koronaAccountId/inventories/inventoryId/inventoryLists lists all inventory lists
KoronaCloudClient::InventoriesApi update_inventory PATCH /accounts/koronaAccountId/inventories/inventoryId updates the single inventory
KoronaCloudClient::InventoriesApi update_inventory_inventory_list PATCH /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId updates the single inventory list
KoronaCloudClient::InventoriesApi update_inventory_inventory_list_item PATCH /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items/productId updates the single inventory list item
KoronaCloudClient::InventoriesApi update_inventory_inventory_list_items PATCH /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items updates inventory list items (property [product] required))
KoronaCloudClient::KoronaAccountApi get_korona_account GET /accounts/koronaAccountId returns the single korona account
KoronaCloudClient::OrganizationalUnitsApi add_organizational_unit_day_ratings POST /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings adds a batch of new day ratings
KoronaCloudClient::OrganizationalUnitsApi delete_organizational_unit_day_rating DELETE /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings/dayRatingIdOrDate deletes the single day rating by its id or date
KoronaCloudClient::OrganizationalUnitsApi get_organizational_unit GET /accounts/koronaAccountId/organizationalUnits/organizationalUnitId returns the single organizational unit
KoronaCloudClient::OrganizationalUnitsApi get_organizational_unit_day_rating GET /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings/dayRatingIdOrDate returns the single day rating by its id or date
KoronaCloudClient::OrganizationalUnitsApi get_organizational_unit_day_ratings GET /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings lists all organizational unit related day ratings
KoronaCloudClient::OrganizationalUnitsApi get_organizational_unit_inventory_lists GET /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/inventoryLists lists the inventory lists belonging to the organizational unit (KORONA.retail required)
KoronaCloudClient::OrganizationalUnitsApi get_organizational_unit_product_stocks GET /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/productStocks lists the product stocks of the organizational unit, in case it contains a warehouse (KORONA.retail required)
KoronaCloudClient::OrganizationalUnitsApi get_organizational_unit_stock_receipts GET /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/stockReceipts lists the stock receipts belonging to the organizational unit (KORONA.retail required)
KoronaCloudClient::OrganizationalUnitsApi get_organizational_units GET /accounts/koronaAccountId/organizationalUnits lists all organizational units
KoronaCloudClient::OrganizationalUnitsApi update_organizational_unit_day_rating PATCH /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings/dayRatingIdOrDate updates the day rating by its id or date
KoronaCloudClient::OrganizationalUnitsApi update_organizational_unit_day_ratings PATCH /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings updates a batch of day ratings
KoronaCloudClient::PaymentMethodsApi get_payment_method GET /accounts/koronaAccountId/paymentMethods/paymentMethodId returns the single payment method
KoronaCloudClient::PaymentMethodsApi get_payment_methods GET /accounts/koronaAccountId/paymentMethods lists all payment methods
KoronaCloudClient::PointsOfSaleApi add_point_of_sale_end_of_day_statements POST /accounts/koronaAccountId/pointsOfSale/pointOfSaleId/endOfDayStatements adds a batch of point of sale-related end-of-day-statements
KoronaCloudClient::PointsOfSaleApi add_point_of_sale_receipts POST /accounts/koronaAccountId/pointsOfSale/pointOfSaleId/receipts adds a batch of point of sale-related receipts
KoronaCloudClient::PointsOfSaleApi get_point_of_sale GET /accounts/koronaAccountId/pointsOfSale/pointOfSaleId returns the single point of sale
KoronaCloudClient::PointsOfSaleApi get_point_of_sale_end_of_day_statements GET /accounts/koronaAccountId/pointsOfSale/pointOfSaleId/endOfDayStatements lists all point of sale-related end-of-day-statements
KoronaCloudClient::PointsOfSaleApi get_point_of_sale_receipt GET /accounts/koronaAccountId/pointsOfSale/pointOfSaleId/receipts/receiptId returns the single point of sale-related receipt
KoronaCloudClient::PointsOfSaleApi get_point_of_sale_receipts GET /accounts/koronaAccountId/pointsOfSale/pointOfSaleId/receipts lists all point of sale-related receipts
KoronaCloudClient::PointsOfSaleApi get_points_of_sale GET /accounts/koronaAccountId/pointsOfSale lists all points of sale
KoronaCloudClient::PointsOfSaleApi update_point_of_sale PATCH /accounts/koronaAccountId/pointsOfSale/pointOfSaleId updates a point of sale (works only for coupling (attribute 'couplingId') or updating device information (attribute 'deviceInformation'))
KoronaCloudClient::PriceGroupsApi get_price_group GET /accounts/koronaAccountId/priceGroups/priceGroupId returns the single price group
KoronaCloudClient::PriceGroupsApi get_price_groups GET /accounts/koronaAccountId/priceGroups lists all price groups
KoronaCloudClient::ProductsApi add_products POST /accounts/koronaAccountId/products adds a batch of new products
KoronaCloudClient::ProductsApi delete_product DELETE /accounts/koronaAccountId/products/productId deletes the single product
KoronaCloudClient::ProductsApi delete_products DELETE /accounts/koronaAccountId/products deletes a batch of products
KoronaCloudClient::ProductsApi get_product GET /accounts/koronaAccountId/products/productId returns the single product
KoronaCloudClient::ProductsApi get_product_stocks GET /accounts/koronaAccountId/products/productId/stocks lists the product stocks in different warehouses (KORONA.retail required)
KoronaCloudClient::ProductsApi get_products GET /accounts/koronaAccountId/products lists all products
KoronaCloudClient::ProductsApi update_product PATCH /accounts/koronaAccountId/products/productId updates the single product
KoronaCloudClient::ProductsApi update_products PATCH /accounts/koronaAccountId/products updates a batch of products
KoronaCloudClient::ReceiptsApi get_receipt GET /accounts/koronaAccountId/receipts/receiptId returns the single receipt
KoronaCloudClient::ReceiptsApi get_receipts GET /accounts/koronaAccountId/receipts lists all receipts
KoronaCloudClient::SalesTaxesApi get_sales_tax GET /accounts/koronaAccountId/salesTaxes/salesTaxId returns the single sales tax
KoronaCloudClient::SalesTaxesApi get_sales_taxes GET /accounts/koronaAccountId/salesTaxes lists all sales taxes
KoronaCloudClient::SectorsApi add_sectors POST /accounts/koronaAccountId/sectors adds a batch of new sectors
KoronaCloudClient::SectorsApi get_sector GET /accounts/koronaAccountId/sectors/sectorId returns the single sector
KoronaCloudClient::SectorsApi get_sectors GET /accounts/koronaAccountId/sectors lists all sectors
KoronaCloudClient::SectorsApi update_sectors PATCH /accounts/koronaAccountId/sectors updates a batch of sectors
KoronaCloudClient::StatisticsApi get_revenue GET /accounts/koronaAccountId/statistics/revenueData returns information about the revenue in the given period
KoronaCloudClient::StatisticsApi get_revenue_for_customer_groups GET /accounts/koronaAccountId/statistics/revenueDataForCustomerGroups returns the turnover per customer group during the given period
KoronaCloudClient::StatisticsApi get_revenue_hourly GET /accounts/koronaAccountId/statistics/revenueDataHourly returns the turnover per hour during the given period
KoronaCloudClient::StatisticsApi get_top_seller GET /accounts/koronaAccountId/statistics/topSeller returns the top-seller
KoronaCloudClient::StockReceiptsApi add_stock_receipt_items POST /accounts/koronaAccountId/stockReceipts/stockReceiptId/items adds stock-receipt items
KoronaCloudClient::StockReceiptsApi add_stock_receipts POST /accounts/koronaAccountId/stockReceipts adds stock-receipts
KoronaCloudClient::StockReceiptsApi book_stock_receipt PATCH /accounts/koronaAccountId/stockReceipts/stockReceiptId/book book the single stock-receipt
KoronaCloudClient::StockReceiptsApi delete_stock_receipt_item DELETE /accounts/koronaAccountId/stockReceipts/stockReceiptId/items/productId deletes the single stock-receipt item
KoronaCloudClient::StockReceiptsApi get_stock_receipt GET /accounts/koronaAccountId/stockReceipts/stockReceiptId returns the single stock-receipt
KoronaCloudClient::StockReceiptsApi get_stock_receipt_item GET /accounts/koronaAccountId/stockReceipts/stockReceiptId/items/productId returns the single stock-receipt item
KoronaCloudClient::StockReceiptsApi get_stock_receipt_items GET /accounts/koronaAccountId/stockReceipts/stockReceiptId/items lists all stock-receipt items
KoronaCloudClient::StockReceiptsApi get_stock_receipts GET /accounts/koronaAccountId/stockReceipts lists all stock-receipts
KoronaCloudClient::StockReceiptsApi update_stock_receipt PATCH /accounts/koronaAccountId/stockReceipts/stockReceiptId updates the single stock-receipt
KoronaCloudClient::StockReceiptsApi update_stock_receipt_item PATCH /accounts/koronaAccountId/stockReceipts/stockReceiptId/items/productId updates the single stock-receipt item
KoronaCloudClient::StockReceiptsApi update_stock_receipt_items PATCH /accounts/koronaAccountId/stockReceipts/stockReceiptId/items updates stock-receipt items
KoronaCloudClient::SuppliersApi get_supplier GET /accounts/koronaAccountId/suppliers/supplierId returns the single supplier
KoronaCloudClient::SuppliersApi get_suppliers GET /accounts/koronaAccountId/suppliers lists all suppliers
KoronaCloudClient::TagsApi add_tags POST /accounts/koronaAccountId/tags adds a batch of new tags
KoronaCloudClient::TagsApi delete_tag DELETE /accounts/koronaAccountId/tags/tagId deletes the single tag
KoronaCloudClient::TagsApi delete_tags DELETE /accounts/koronaAccountId/tags deletes a batch of tags
KoronaCloudClient::TagsApi get_tag GET /accounts/koronaAccountId/tags/tagId returns the single tag
KoronaCloudClient::TagsApi get_tags GET /accounts/koronaAccountId/tags lists all tags
KoronaCloudClient::TagsApi update_tag PATCH /accounts/koronaAccountId/tags/tagId updates the single tag
KoronaCloudClient::TagsApi update_tags PATCH /accounts/koronaAccountId/tags updates a batch of tags
KoronaCloudClient::TicketCreationApi add_creation_task POST /accounts/koronaAccountId/ticketCreation adds a creation task
KoronaCloudClient::TicketCreationApi get_creation_tasks GET /accounts/koronaAccountId/ticketCreation creation tasks, personalization will always be empty for technical reasons
KoronaCloudClient::TicketingApi add_events POST /accounts/koronaAccountId/events adds a batch of new events
KoronaCloudClient::TicketingApi add_or_update_attendances POST /accounts/koronaAccountId/attendance updates/adds attendances
KoronaCloudClient::TicketingApi add_ticket_definitions POST /accounts/koronaAccountId/ticketDefinitions adds a batch of new ticket definitions
KoronaCloudClient::TicketingApi cancel_attendance DELETE /accounts/koronaAccountId/attendance/attendanceId cancel the attendance
KoronaCloudClient::TicketingApi delete_event DELETE /accounts/koronaAccountId/events/eventId deletes the single event
KoronaCloudClient::TicketingApi delete_ticket_definition DELETE /accounts/koronaAccountId/ticketDefinitions/ticketDefinitionId deletes the single ticket definition
KoronaCloudClient::TicketingApi delete_ticket_definitions DELETE /accounts/koronaAccountId/ticketDefinitions deletes a batch of ticket definitions
KoronaCloudClient::TicketingApi get_attendances GET /accounts/koronaAccountId/attendance lists all attendances
KoronaCloudClient::TicketingApi get_entry_gate GET /accounts/koronaAccountId/entryGates/entryGateId returns the single entry gate
KoronaCloudClient::TicketingApi get_entry_gates GET /accounts/koronaAccountId/entryGates lists all entry gates
KoronaCloudClient::TicketingApi get_event GET /accounts/koronaAccountId/events/eventId returns the single event
KoronaCloudClient::TicketingApi get_events GET /accounts/koronaAccountId/events lists all events
KoronaCloudClient::TicketingApi get_ticket_definition GET /accounts/koronaAccountId/ticketDefinitions/ticketDefinitionId returns the single ticket definition
KoronaCloudClient::TicketingApi get_ticket_definitions GET /accounts/koronaAccountId/ticketDefinitions lists all ticket definitions
KoronaCloudClient::TicketingApi get_tickets GET /accounts/koronaAccountId/tickets lists all tickets
KoronaCloudClient::TicketingApi lock_ticket DELETE /accounts/koronaAccountId/tickets/ticketNumber locks the single ticket
KoronaCloudClient::TicketingApi unlock_ticket POST /accounts/koronaAccountId/tickets/ticketNumber unlocks the single ticket
KoronaCloudClient::TicketingApi update_event PATCH /accounts/koronaAccountId/events/eventId updates the single event
KoronaCloudClient::TicketingApi update_events PATCH /accounts/koronaAccountId/events updates a batch of events
KoronaCloudClient::TicketingApi update_ticket PATCH /accounts/koronaAccountId/tickets/ticketNumber updates the single ticket
KoronaCloudClient::TicketingApi update_ticket_definitions PATCH /accounts/koronaAccountId/ticketDefinitions updates a batch of ticket definitions
KoronaCloudClient::TimeTrackingApi add_entities POST /accounts/koronaAccountId/timeTrackingEntities adds a batch of new time tracking entities
KoronaCloudClient::TimeTrackingApi add_entries POST /accounts/koronaAccountId/timeTrackingEntries adds a batch of new time tracking entries
KoronaCloudClient::TimeTrackingApi get_entities GET /accounts/koronaAccountId/timeTrackingEntities lists time tracking entities
KoronaCloudClient::TimeTrackingApi get_entries GET /accounts/koronaAccountId/timeTrackingEntries lists time tracking entries
KoronaCloudClient::TimeTrackingApi get_time_tracking_entity GET /accounts/koronaAccountId/timeTrackingEntities/timeTrackingEntityId returns a single time tracking entity
KoronaCloudClient::TimeTrackingApi get_time_tracking_entry GET /accounts/koronaAccountId/timeTrackingEntries/timeTrackingEntryId returns a single time tracking entry

Documentation for Models

Documentation for Authorization

basicAuth

  • Type: HTTP basic authentication