All translations
Enter a message name below to show all available translations.
Found one translation.
| Name | Current message text |
|---|---|
| h English (en) | Returns statistics about created bookings and cancellations for a time period. Data presented as array of hashes for each type of operation (created or cancelled booking) groped by clients. <code>"type"</code> field can be either "create", "cancel" or "nopayment_cancel". If <code>"user_id"</code> not specified then bookings where created or cancelled by admin or employee. Data with type <code>"nopayment_cancel"</code> represents bookings cancelled automatically by system.Example: 3 bookings where created by admin or employee and 2 bookings where automatically cancelled by system. [{ "cnt" : 3, "firstname" : null, "lastname" : null, "login" : null, "type" : "create", "user_id"" : null }, { "cnt" : 2, "firstname" : null, "lastname" : null, "login" : null, "type" : "nopayment_cancel", "user_id"" : null }] |