korona_client
KoronaClient - the Ruby gem for the KORONA.cloud API v3
Our api provides access to our cloud services
This SDK is automatically generated by the Swagger Codegen project:
- API version: 2.11.21
- Package version: 1.1.0
- Build package: io.swagger.codegen.languages.RubyClientCodegen
Installation
Build a gem
To build the Ruby code into a gem:
gem build korona_client.gemspec
Then either install the gem locally:
gem install ./korona_client-1.1.0.gem
(for development, run gem install --dev ./korona_client-1.1.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_client', '~> 1.1.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_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_client'
# Setup authorization
KoronaClient.configure do |config|
# Configure HTTP basic authorization: basicAuth
config.username = 'YOUR USERNAME'
config.password = 'YOUR PASSWORD'
end
api_instance = KoronaClient::AccountsApi.new
korona_account_id = 'korona_account_id_example' # String | account id of the KORONA.cloud account
account_id = 'account_id_example' # String | id of the related object (important: id should match the uuid-format)
begin
#returns the single account
result = api_instance.get_account(korona_account_id, account_id)
p result
rescue KoronaClient::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 |
---|---|---|---|
KoronaClient::AccountsApi | get_account | GET /accounts/koronaAccountId/accounts/accountId | returns the single account |
KoronaClient::AccountsApi | get_accounts | GET /accounts/koronaAccountId/accounts | lists all accounts |
KoronaClient::AdditionalReceiptInfoTypesApi | get_additional_receipt_info_type | GET /accounts/koronaAccountId/additionalReceiptInfoTypes/additionalReceiptInfoTypeId | returns the single additional receipt info type |
KoronaClient::AdditionalReceiptInfoTypesApi | get_additional_receipt_info_types | GET /accounts/koronaAccountId/additionalReceiptInfoTypes | lists all additional receipt info types |
KoronaClient::AssortmentsApi | add_assortments | POST /accounts/koronaAccountId/assortments | adds a batch of new assortments |
KoronaClient::AssortmentsApi | delete_assortment | DELETE /accounts/koronaAccountId/assortments/assortmentId | deletes the single assortment |
KoronaClient::AssortmentsApi | delete_assortments | DELETE /accounts/koronaAccountId/assortments | deletes a batch of assortments |
KoronaClient::AssortmentsApi | get_assortment | GET /accounts/koronaAccountId/assortments/assortmentId | returns the single assortment |
KoronaClient::AssortmentsApi | get_assortments | GET /accounts/koronaAccountId/assortments | lists all assortments |
KoronaClient::AssortmentsApi | update_assortment | PATCH /accounts/koronaAccountId/assortments/assortmentId | updates the single assortment |
KoronaClient::AssortmentsApi | update_assortments | PATCH /accounts/koronaAccountId/assortments | updates a batch of assortments |
KoronaClient::CashiersApi | get_cashier | GET /accounts/koronaAccountId/cashiers/cashierId | returns the single cashier |
KoronaClient::CashiersApi | get_cashiers | GET /accounts/koronaAccountId/cashiers | lists all cashiers |
KoronaClient::CommodityGroupsApi | add_commodity_groups | POST /accounts/koronaAccountId/commodityGroups | adds a batch of new commodity groups |
KoronaClient::CommodityGroupsApi | delete_commodity_group | DELETE /accounts/koronaAccountId/commodityGroups/commodityGroupId | deletes the single commodity group |
KoronaClient::CommodityGroupsApi | delete_commodity_groups | DELETE /accounts/koronaAccountId/commodityGroups | deletes a batch of commodity groups |
KoronaClient::CommodityGroupsApi | get_commodity_group | GET /accounts/koronaAccountId/commodityGroups/commodityGroupId | returns the single commodity group |
KoronaClient::CommodityGroupsApi | get_commodity_groups | GET /accounts/koronaAccountId/commodityGroups | lists all commodity groups |
KoronaClient::CommodityGroupsApi | update_commodity_group | PATCH /accounts/koronaAccountId/commodityGroups/commodityGroupId | updates the single commodity group |
KoronaClient::CommodityGroupsApi | update_commodity_groups | PATCH /accounts/koronaAccountId/commodityGroups | updates a batch of commodity groups |
KoronaClient::CurrenciesApi | get_currencies | GET /accounts/koronaAccountId/currencies | lists all currencies |
KoronaClient::CurrenciesApi | get_currency | GET /accounts/koronaAccountId/currencies/currencyId | returns the single currency |
KoronaClient::CustomerGroupsApi | get_customer_group | GET /accounts/koronaAccountId/customerGroups/customerGroupId | returns the single customer group |
KoronaClient::CustomerGroupsApi | get_customer_groups | GET /accounts/koronaAccountId/customerGroups | lists all customer groups |
KoronaClient::CustomerOrdersApi | add_customer_orders | POST /accounts/koronaAccountId/customerOrders | adds a batch of new customer orders |
KoronaClient::CustomerOrdersApi | delete_customer_order | DELETE /accounts/koronaAccountId/customerOrders/customerOrderId | deletes the single customer order |
KoronaClient::CustomerOrdersApi | get_customer_order | GET /accounts/koronaAccountId/customerOrders/customerOrderId | returns the single customer order |
KoronaClient::CustomerOrdersApi | get_customer_orders | GET /accounts/koronaAccountId/customerOrders | lists all customer orders |
KoronaClient::CustomerOrdersApi | update_customer_order | PATCH /accounts/koronaAccountId/customerOrders/customerOrderId | updates the single customer order |
KoronaClient::CustomerOrdersApi | update_customer_orders | PATCH /accounts/koronaAccountId/customerOrders | updates a batch of customer orders |
KoronaClient::CustomersApi | add_customers | POST /accounts/koronaAccountId/customers | adds a batch of new customers |
KoronaClient::CustomersApi | delete_customer | DELETE /accounts/koronaAccountId/customers/customerId | deletes the single customer |
KoronaClient::CustomersApi | delete_customers | DELETE /accounts/koronaAccountId/customers | deletes a batch of customers |
KoronaClient::CustomersApi | get_customer | GET /accounts/koronaAccountId/customers/customerId | returns the single customer |
KoronaClient::CustomersApi | get_customers | GET /accounts/koronaAccountId/customers | lists all customers |
KoronaClient::CustomersApi | update_customer | PATCH /accounts/koronaAccountId/customers/customerId | updates the single customer |
KoronaClient::CustomersApi | update_customers | PATCH /accounts/koronaAccountId/customers | updates a batch of customers |
KoronaClient::DeliveryNotesApi | add_delivery_notes | POST /accounts/koronaAccountId/deliveryNotes | adds delivery notes |
KoronaClient::DeliveryNotesApi | book_delivery_note | PATCH /accounts/koronaAccountId/deliveryNotes/deliveryNoteId/book | book the single delivery note |
KoronaClient::DeliveryNotesApi | finalize_delivery_note | PATCH /accounts/koronaAccountId/deliveryNotes/deliveryNoteId/finalize | finalize the single delivery note |
KoronaClient::DeliveryNotesApi | get_delivery_note | GET /accounts/koronaAccountId/deliveryNotes/deliveryNoteId | returns a single delivery note |
KoronaClient::DeliveryNotesApi | get_delivery_notes | GET /accounts/koronaAccountId/deliveryNotes | lists all delivery notes |
KoronaClient::EconomicZonesApi | get_economic_zone | GET /accounts/koronaAccountId/economicZones/economicZoneId | returns the single economic zone |
KoronaClient::EconomicZonesApi | get_economic_zones | GET /accounts/koronaAccountId/economicZones | lists all economic zones |
KoronaClient::ExternalSystemCallsApi | add_external_system_calls | POST /accounts/koronaAccountId/externalSystemCalls | adds a batch of new external system calls |
KoronaClient::ExternalSystemCallsApi | delete_external_system_call | DELETE /accounts/koronaAccountId/externalSystemCalls/externalSystemCallId | deletes a single external system call |
KoronaClient::ExternalSystemCallsApi | delete_external_system_calls | DELETE /accounts/koronaAccountId/externalSystemCalls | deletes a batch of external system calls |
KoronaClient::ExternalSystemCallsApi | get_external_system_call | GET /accounts/koronaAccountId/externalSystemCalls/externalSystemCallId | returns a single external system call |
KoronaClient::ExternalSystemCallsApi | get_external_system_calls | GET /accounts/koronaAccountId/externalSystemCalls | lists all external system calls |
KoronaClient::ExternalSystemCallsApi | update_external_system_call | PATCH /accounts/koronaAccountId/externalSystemCalls/externalSystemCallId | updates the single external system call |
KoronaClient::ExternalSystemCallsApi | update_external_system_calls | PATCH /accounts/koronaAccountId/externalSystemCalls | updates a batch of external system calls |
KoronaClient::ImagesApi | get_image | GET /accounts/koronaAccountId/images/imageId | displays the image |
KoronaClient::InfoTextsApi | get_info_text | GET /accounts/koronaAccountId/infoTexts/infoTextId | returns the single info text |
KoronaClient::InfoTextsApi | get_info_texts | GET /accounts/koronaAccountId/infoTexts | lists all info texts |
KoronaClient::InventoriesApi | add_inventories | POST /accounts/koronaAccountId/inventories | adds a batch of new inventories |
KoronaClient::InventoriesApi | add_inventory_inventory_list_items | POST /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items | adds inventory list items |
KoronaClient::InventoriesApi | delete_inventory | DELETE /accounts/koronaAccountId/inventories/inventoryId | deletes the single inventory (only allowed if hasBookedReceipts=false) |
KoronaClient::InventoriesApi | delete_inventory_inventory_list_item | DELETE /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items/productId | deletes the single inventory list item |
KoronaClient::InventoriesApi | get_inventories | GET /accounts/koronaAccountId/inventories | lists all inventories |
KoronaClient::InventoriesApi | get_inventory | GET /accounts/koronaAccountId/inventories/inventoryId | returns the single inventory |
KoronaClient::InventoriesApi | get_inventory_inventory_list | GET /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId | returns the single inventory list |
KoronaClient::InventoriesApi | get_inventory_inventory_list_item | GET /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items/productId | returns the single inventory list item |
KoronaClient::InventoriesApi | get_inventory_inventory_list_items | GET /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items | lists all inventory list items |
KoronaClient::InventoriesApi | get_inventory_inventory_lists | GET /accounts/koronaAccountId/inventories/inventoryId/inventoryLists | lists all inventory lists |
KoronaClient::InventoriesApi | update_inventory | PATCH /accounts/koronaAccountId/inventories/inventoryId | updates the single inventory |
KoronaClient::InventoriesApi | update_inventory_inventory_list | PATCH /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId | updates the single inventory list |
KoronaClient::InventoriesApi | update_inventory_inventory_list_item | PATCH /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items/productId | updates the single inventory list item |
KoronaClient::InventoriesApi | update_inventory_inventory_list_items | PATCH /accounts/koronaAccountId/inventories/inventoryId/inventoryLists/inventoryListId/items | updates inventory list items (property [product] required)) |
KoronaClient::KoronaAccountApi | get_korona_account | GET /accounts/koronaAccountId | returns the single korona account |
KoronaClient::OrganizationalUnitsApi | add_organizational_unit_day_ratings | POST /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings | adds a batch of new day ratings |
KoronaClient::OrganizationalUnitsApi | delete_organizational_unit_day_rating | DELETE /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings/dayRatingIdOrDate | deletes the single day rating by its id or date |
KoronaClient::OrganizationalUnitsApi | get_organizational_unit | GET /accounts/koronaAccountId/organizationalUnits/organizationalUnitId | returns the single organizational unit |
KoronaClient::OrganizationalUnitsApi | get_organizational_unit_day_rating | GET /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings/dayRatingIdOrDate | returns the single day rating by its id or date |
KoronaClient::OrganizationalUnitsApi | get_organizational_unit_day_ratings | GET /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings | lists all organizational unit related day ratings |
KoronaClient::OrganizationalUnitsApi | get_organizational_unit_inventory_lists | GET /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/inventoryLists | lists the inventory lists belonging to the organizational unit (KORONA.retail required) |
KoronaClient::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) |
KoronaClient::OrganizationalUnitsApi | get_organizational_unit_stock_receipts | GET /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/stockReceipts | lists the stock receipts belonging to the organizational unit (KORONA.retail required) |
KoronaClient::OrganizationalUnitsApi | get_organizational_units | GET /accounts/koronaAccountId/organizationalUnits | lists all organizational units |
KoronaClient::OrganizationalUnitsApi | update_organizational_unit_day_rating | PATCH /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings/dayRatingIdOrDate | updates the day rating by its id or date |
KoronaClient::OrganizationalUnitsApi | update_organizational_unit_day_ratings | PATCH /accounts/koronaAccountId/organizationalUnits/organizationalUnitId/dayRatings | updates a batch of day ratings |
KoronaClient::PaymentMethodsApi | get_payment_method | GET /accounts/koronaAccountId/paymentMethods/paymentMethodId | returns the single payment method |
KoronaClient::PaymentMethodsApi | get_payment_methods | GET /accounts/koronaAccountId/paymentMethods | lists all payment methods |
KoronaClient::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 |
KoronaClient::PointsOfSaleApi | add_point_of_sale_receipts | POST /accounts/koronaAccountId/pointsOfSale/pointOfSaleId/receipts | adds a batch of point of sale-related receipts |
KoronaClient::PointsOfSaleApi | get_point_of_sale | GET /accounts/koronaAccountId/pointsOfSale/pointOfSaleId | returns the single point of sale |
KoronaClient::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 |
KoronaClient::PointsOfSaleApi | get_point_of_sale_receipt | GET /accounts/koronaAccountId/pointsOfSale/pointOfSaleId/receipts/receiptId | returns the single point of sale-related receipt |
KoronaClient::PointsOfSaleApi | get_point_of_sale_receipts | GET /accounts/koronaAccountId/pointsOfSale/pointOfSaleId/receipts | lists all point of sale-related receipts |
KoronaClient::PointsOfSaleApi | get_points_of_sale | GET /accounts/koronaAccountId/pointsOfSale | lists all points of sale |
KoronaClient::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')) |
KoronaClient::PriceGroupsApi | get_price_group | GET /accounts/koronaAccountId/priceGroups/priceGroupId | returns the single price group |
KoronaClient::PriceGroupsApi | get_price_groups | GET /accounts/koronaAccountId/priceGroups | lists all price groups |
KoronaClient::ProductsApi | add_products | POST /accounts/koronaAccountId/products | adds a batch of new products |
KoronaClient::ProductsApi | delete_product | DELETE /accounts/koronaAccountId/products/productId | deletes the single product |
KoronaClient::ProductsApi | delete_products | DELETE /accounts/koronaAccountId/products | deletes a batch of products |
KoronaClient::ProductsApi | get_product | GET /accounts/koronaAccountId/products/productId | returns the single product |
KoronaClient::ProductsApi | get_product_stocks | GET /accounts/koronaAccountId/products/productId/stocks | lists the product stocks in different warehouses (KORONA.retail required) |
KoronaClient::ProductsApi | get_products | GET /accounts/koronaAccountId/products | lists all products |
KoronaClient::ProductsApi | update_product | PATCH /accounts/koronaAccountId/products/productId | updates the single product |
KoronaClient::ProductsApi | update_products | PATCH /accounts/koronaAccountId/products | updates a batch of products |
KoronaClient::ReceiptsApi | get_receipt | GET /accounts/koronaAccountId/receipts/receiptId | returns the single receipt |
KoronaClient::ReceiptsApi | get_receipts | GET /accounts/koronaAccountId/receipts | lists all receipts |
KoronaClient::SalesTaxesApi | get_sales_tax | GET /accounts/koronaAccountId/salesTaxes/salesTaxId | returns the single sales tax |
KoronaClient::SalesTaxesApi | get_sales_taxes | GET /accounts/koronaAccountId/salesTaxes | lists all sales taxes |
KoronaClient::SectorsApi | get_sector | GET /accounts/koronaAccountId/sectors/sectorId | returns the single sector |
KoronaClient::SectorsApi | get_sectors | GET /accounts/koronaAccountId/sectors | lists all sectors |
KoronaClient::StatisticsApi | get_revenue | GET /accounts/koronaAccountId/statistics/revenueData | returns information about the revenue in the given period |
KoronaClient::StatisticsApi | get_revenue_for_customer_groups | GET /accounts/koronaAccountId/statistics/revenueDataForCustomerGroups | returns the turnover per customer group during the given period |
KoronaClient::StatisticsApi | get_revenue_hourly | GET /accounts/koronaAccountId/statistics/revenueDataHourly | returns the turnover per hour during the given period |
KoronaClient::StatisticsApi | get_top_seller | GET /accounts/koronaAccountId/statistics/topSeller | returns the top-seller |
KoronaClient::StockReceiptsApi | add_stock_receipt_items | POST /accounts/koronaAccountId/stockReceipts/stockReceiptId/items | adds stock-receipt items |
KoronaClient::StockReceiptsApi | add_stock_receipts | POST /accounts/koronaAccountId/stockReceipts | adds stock-receipts |
KoronaClient::StockReceiptsApi | book_stock_receipt | PATCH /accounts/koronaAccountId/stockReceipts/stockReceiptId/book | book the single stock-receipt |
KoronaClient::StockReceiptsApi | delete_stock_receipt_item | DELETE /accounts/koronaAccountId/stockReceipts/stockReceiptId/items/productId | deletes the single stock-receipt item |
KoronaClient::StockReceiptsApi | get_stock_receipt | GET /accounts/koronaAccountId/stockReceipts/stockReceiptId | returns the single stock-receipt |
KoronaClient::StockReceiptsApi | get_stock_receipt_item | GET /accounts/koronaAccountId/stockReceipts/stockReceiptId/items/productId | returns the single stock-receipt item |
KoronaClient::StockReceiptsApi | get_stock_receipt_items | GET /accounts/koronaAccountId/stockReceipts/stockReceiptId/items | lists all stock-receipt items |
KoronaClient::StockReceiptsApi | get_stock_receipts | GET /accounts/koronaAccountId/stockReceipts | lists all stock-receipts |
KoronaClient::StockReceiptsApi | update_stock_receipt | PATCH /accounts/koronaAccountId/stockReceipts/stockReceiptId | updates the single stock-receipt |
KoronaClient::StockReceiptsApi | update_stock_receipt_item | PATCH /accounts/koronaAccountId/stockReceipts/stockReceiptId/items/productId | updates the single stock-receipt item |
KoronaClient::StockReceiptsApi | update_stock_receipt_items | PATCH /accounts/koronaAccountId/stockReceipts/stockReceiptId/items | updates stock-receipt items |
KoronaClient::SuppliersApi | get_supplier | GET /accounts/koronaAccountId/suppliers/supplierId | returns the single supplier |
KoronaClient::SuppliersApi | get_suppliers | GET /accounts/koronaAccountId/suppliers | lists all suppliers |
KoronaClient::TagsApi | add_tags | POST /accounts/koronaAccountId/tags | adds a batch of new tags |
KoronaClient::TagsApi | delete_tag | DELETE /accounts/koronaAccountId/tags/tagId | deletes the single tag |
KoronaClient::TagsApi | delete_tags | DELETE /accounts/koronaAccountId/tags | deletes a batch of tags |
KoronaClient::TagsApi | get_tag | GET /accounts/koronaAccountId/tags/tagId | returns the single tag |
KoronaClient::TagsApi | get_tags | GET /accounts/koronaAccountId/tags | lists all tags |
KoronaClient::TagsApi | update_tag | PATCH /accounts/koronaAccountId/tags/tagId | updates the single tag |
KoronaClient::TagsApi | update_tags | PATCH /accounts/koronaAccountId/tags | updates a batch of tags |
KoronaClient::TicketCreationApi | add_creation_task | POST /accounts/koronaAccountId/ticketCreation | adds a creation task |
KoronaClient::TicketCreationApi | get_creation_tasks | GET /accounts/koronaAccountId/ticketCreation | creation tasks, personalization will always be empty for technical reasons |
KoronaClient::TicketingApi | add_events | POST /accounts/koronaAccountId/events | adds a batch of new events |
KoronaClient::TicketingApi | add_or_update_attendances | POST /accounts/koronaAccountId/attendance | updates/adds attendances |
KoronaClient::TicketingApi | add_ticket_definitions | POST /accounts/koronaAccountId/ticketDefinitions | adds a batch of new ticket definitions |
KoronaClient::TicketingApi | cancel_attendance | DELETE /accounts/koronaAccountId/attendance/attendanceId | cancel the attendance |
KoronaClient::TicketingApi | delete_event | DELETE /accounts/koronaAccountId/events/eventId | deletes the single event |
KoronaClient::TicketingApi | delete_ticket_definition | DELETE /accounts/koronaAccountId/ticketDefinitions/ticketDefinitionId | deletes the single ticket definition |
KoronaClient::TicketingApi | delete_ticket_definitions | DELETE /accounts/koronaAccountId/ticketDefinitions | deletes a batch of ticket definitions |
KoronaClient::TicketingApi | get_attendances | GET /accounts/koronaAccountId/attendance | lists all attendances |
KoronaClient::TicketingApi | get_entry_gate | GET /accounts/koronaAccountId/entryGates/entryGateId | returns the single entry gate |
KoronaClient::TicketingApi | get_entry_gates | GET /accounts/koronaAccountId/entryGates | lists all entry gates |
KoronaClient::TicketingApi | get_event | GET /accounts/koronaAccountId/events/eventId | returns the single event |
KoronaClient::TicketingApi | get_events | GET /accounts/koronaAccountId/events | lists all events |
KoronaClient::TicketingApi | get_ticket_definition | GET /accounts/koronaAccountId/ticketDefinitions/ticketDefinitionId | returns the single ticket definition |
KoronaClient::TicketingApi | get_ticket_definitions | GET /accounts/koronaAccountId/ticketDefinitions | lists all ticket definitions |
KoronaClient::TicketingApi | get_tickets | GET /accounts/koronaAccountId/tickets | lists all tickets |
KoronaClient::TicketingApi | lock_ticket | DELETE /accounts/koronaAccountId/tickets/ticketNumber | locks the single ticket |
KoronaClient::TicketingApi | unlock_ticket | POST /accounts/koronaAccountId/tickets/ticketNumber | unlocks the single ticket |
KoronaClient::TicketingApi | update_event | PATCH /accounts/koronaAccountId/events/eventId | updates the single event |
KoronaClient::TicketingApi | update_events | PATCH /accounts/koronaAccountId/events | updates a batch of events |
KoronaClient::TicketingApi | update_ticket | PATCH /accounts/koronaAccountId/tickets/ticketNumber | updates the single ticket |
KoronaClient::TicketingApi | update_ticket_definitions | PATCH /accounts/koronaAccountId/ticketDefinitions | updates a batch of ticket definitions |
KoronaClient::TimeTrackingApi | add_entities | POST /accounts/koronaAccountId/timeTrackingEntities | adds a batch of new time tracking entities |
KoronaClient::TimeTrackingApi | add_entries | POST /accounts/koronaAccountId/timeTrackingEntries | adds a batch of new time tracking entries |
KoronaClient::TimeTrackingApi | get_entities | GET /accounts/koronaAccountId/timeTrackingEntities | lists time tracking entities |
KoronaClient::TimeTrackingApi | get_entries | GET /accounts/koronaAccountId/timeTrackingEntries | lists time tracking entries |
KoronaClient::TimeTrackingApi | get_time_tracking_entity | GET /accounts/koronaAccountId/timeTrackingEntities/timeTrackingEntityId | returns a single time tracking entity |
KoronaClient::TimeTrackingApi | get_time_tracking_entry | GET /accounts/koronaAccountId/timeTrackingEntries/timeTrackingEntryId | returns a single time tracking entry |
Documentation for Models
- KoronaClient::Account
- KoronaClient::AccountSummary
- KoronaClient::AccountTransaction
- KoronaClient::AddOrUpdateResult
- KoronaClient::AdditionalInfo
- KoronaClient::AdditionalReceiptInfoType
- KoronaClient::AddressInformation
- KoronaClient::Admission
- KoronaClient::Amount
- KoronaClient::AmountCountData
- KoronaClient::Assortment
- KoronaClient::Attendance
- KoronaClient::BadRequestError
- KoronaClient::Capacity
- KoronaClient::Cashier
- KoronaClient::CashierSummary
- KoronaClient::Category
- KoronaClient::CloudSubscription
- KoronaClient::CommodityGroup
- KoronaClient::CommodityGroupSummary
- KoronaClient::CompanyIdentification
- KoronaClient::CreationTask
- KoronaClient::Currency
- KoronaClient::CurrencyDenomination
- KoronaClient::CurrencyExchangeRate
- KoronaClient::Customer
- KoronaClient::CustomerCard
- KoronaClient::CustomerData
- KoronaClient::CustomerGroup
- KoronaClient::CustomerGroupSummary
- KoronaClient::CustomerInformation
- KoronaClient::CustomerOrder
- KoronaClient::DayRating
- KoronaClient::DayTimePeriod
- KoronaClient::DeliveryNote
- KoronaClient::DeliveryNoteItem
- KoronaClient::Deposit
- KoronaClient::DeviceInformation
- KoronaClient::Discount
- KoronaClient::EconomicZone
- KoronaClient::EndOfDayStatement
- KoronaClient::EndOfDayStatementSummary
- KoronaClient::EntryGate
- KoronaClient::Event
- KoronaClient::ExternalSystemCall
- KoronaClient::ForbiddenError
- KoronaClient::GeoLocation
- KoronaClient::InfoText
- KoronaClient::Interval
- KoronaClient::Inventory
- KoronaClient::InventoryList
- KoronaClient::InventoryListItem
- KoronaClient::InventoryListItemStock
- KoronaClient::KoronaAccount
- KoronaClient::MediaUrl
- KoronaClient::MethodNotAllowedError
- KoronaClient::ModelReference
- KoronaClient::NotFoundError
- KoronaClient::OrganizationalUnit
- KoronaClient::Payment
- KoronaClient::PaymentMethod
- KoronaClient::PaymentSummary
- KoronaClient::Period
- KoronaClient::PeriodListTopSeller
- KoronaClient::PeriodMapStringRevenueData
- KoronaClient::PeriodObject
- KoronaClient::PeriodRevenueData
- KoronaClient::Pos
- KoronaClient::PriceGroup
- KoronaClient::Product
- KoronaClient::ProductCode
- KoronaClient::ProductDescription
- KoronaClient::ProductPrice
- KoronaClient::ProductStock
- KoronaClient::ProductSubproduct
- KoronaClient::ProductSupplierPrice
- KoronaClient::ProductTransferInvolvedPartyInformation
- KoronaClient::ProductTransferInvolvedPartyInformationData
- KoronaClient::Rating
- KoronaClient::Receipt
- KoronaClient::ReceiptItem
- KoronaClient::ResultList
- KoronaClient::ResultListAccount
- KoronaClient::ResultListAdditionalReceiptInfoType
- KoronaClient::ResultListAssortment
- KoronaClient::ResultListAttendance
- KoronaClient::ResultListCashier
- KoronaClient::ResultListCommodityGroup
- KoronaClient::ResultListCreationTask
- KoronaClient::ResultListCurrency
- KoronaClient::ResultListCustomer
- KoronaClient::ResultListCustomerGroup
- KoronaClient::ResultListCustomerOrder
- KoronaClient::ResultListDayRating
- KoronaClient::ResultListDeliveryNote
- KoronaClient::ResultListEconomicZone
- KoronaClient::ResultListEndOfDayStatement
- KoronaClient::ResultListEntryGate
- KoronaClient::ResultListEvent
- KoronaClient::ResultListExternalSystemCall
- KoronaClient::ResultListInfoText
- KoronaClient::ResultListInventory
- KoronaClient::ResultListInventoryList
- KoronaClient::ResultListInventoryListItem
- KoronaClient::ResultListOrganizationalUnit
- KoronaClient::ResultListPaymentMethod
- KoronaClient::ResultListPos
- KoronaClient::ResultListPriceGroup
- KoronaClient::ResultListProduct
- KoronaClient::ResultListProductStock
- KoronaClient::ResultListReceipt
- KoronaClient::ResultListSalesTax
- KoronaClient::ResultListSector
- KoronaClient::ResultListStockReceipt
- KoronaClient::ResultListStockReceiptItem
- KoronaClient::ResultListSupplier
- KoronaClient::ResultListTag
- KoronaClient::ResultListTicket
- KoronaClient::ResultListTicketDefinition
- KoronaClient::ResultListTimeTrackingEntity
- KoronaClient::ResultListTimeTrackingEntry
- KoronaClient::RevenueData
- KoronaClient::SalesTax
- KoronaClient::SalesTaxRate
- KoronaClient::Sector
- KoronaClient::SectorRevenueAccountItem
- KoronaClient::SectorSalesTaxItem
- KoronaClient::Signature
- KoronaClient::Statistic
- KoronaClient::StatisticListTopSeller
- KoronaClient::StatisticMapStringRevenueData
- KoronaClient::StatisticRevenueData
- KoronaClient::StockReceipt
- KoronaClient::StockReceiptItem
- KoronaClient::StockReceiptItemAmount
- KoronaClient::StockReceiptItemIdentification
- KoronaClient::StockReceiptItemPurchasePrice
- KoronaClient::Supplier
- KoronaClient::SupplierContact
- KoronaClient::SupplierContactPerson
- KoronaClient::SupplierPaymentInformation
- KoronaClient::Tag
- KoronaClient::TaxPayment
- KoronaClient::TaxSummary
- KoronaClient::Ticket
- KoronaClient::TicketDefinition
- KoronaClient::TicketPersonalization
- KoronaClient::TimePeriod
- KoronaClient::TimeTrackingEntity
- KoronaClient::TimeTrackingEntry
- KoronaClient::TooManyRequestsError
- KoronaClient::TopSeller
- KoronaClient::TotalPeriod
- KoronaClient::TotalPrice
- KoronaClient::Validity
- KoronaClient::Weather
Documentation for Authorization
basicAuth
- Type: HTTP basic authentication