Verilobi API
HomeBeach BotV-WorkV-BuildingV-Worker
HomeBeach BotV-WorkV-BuildingV-Worker
🔗 Teknolobi
🔗 Verilobi
  1. Accounts
  • About Verilobi API Documentation
  • Beach Bot
    • About Verilobi Hotel
    • Maps
      • Get Maps
      • Add Map
      • Update Map
      • Delete Map
    • Other
      • Generate Token
      • Check Notifications
      • Get Global Parameters
    • Languages
      • Get Languages
      • Get Language Variable
      • Create New Language
      • Set Language Variable
    • Products
      • Get Languages
      • Get Language Variable
      • Create New Language
      • Set Language Variable
    • Requests
      • Cancel Request
      • Close Request
      • Get Requests
      • Get Language Variable
      • Create New Language
      • Set Language Variable
    • Menu
      • Get Menu
      • Get Menu Groups
      • Get Menu Categories
    • Accounts
      • Open Account
        POST
      • Move Account
        POST
      • Merge Accounts
        POST
      • Split Accounts
        POST
      • Create Reservation
        POST
      • Delete Reservation
        DELETE
      • Move Account Copy
        GET
      • Get Account
        GET
    • Order
      • Delete Order
      • Cancel Order
      • Approve Order
      • Create Order
  • Verilobi Work
    • About Verilobi Work
    • Accounts
      • Hesapları Listele
    • Maps
    • Find pet by ID
      GET
    • Find pet by ID Copy
      GET
    • Add a new pet to the store
      POST
    • Generate Access Token
      POST
    • Update an existing pet
      PUT
    • Deletes a pet
      DELETE
    • Finds Pets by status
      GET
  • Verilobi Building
    • About Verilobi Building
  • Verilobi Worker
    • About Verilobi Worker
  1. Accounts

Delete Reservation

DELETE
https://api.verilobi.com/verilobi-hotel/account/reservation/{acuid}

Description#

This endpoint retrieves the list of maps available in the hotel or related system. It requires the client to send the
X-Api-Key and Token-Key in the HTTP header. For detailed information regarding the
generation of the Token-Key, please refer to the documentation available at this link.

Features:#

  • Endpoint:#
    /maps
  • Operation Name:#
    Map List
  • Input Parameters:#
    • X-Api-Key: API key (provided in the HTTP header)
    • Token-Key: Token used for authorization (provided in the HTTP header)
    • language (optional): Specifies the desired language. If not provided, the system returns
      the response in the default language; if provided, the response will be in the specified language. For
      more details regarding system languages, refer to the documentation at this link.
  • Output:#
    • If the operation is successful, the map information is returned as an array within the
      response data.

Usage Scenario:#

  • The client sends the valid X-Api-Key and Token-Key in the HTTP header.
  • Optionally, the language parameter can be provided to specify the desired language for the
    response.
  • The endpoint retrieves the map list and returns the data in the response field as an array.

Request

Path Params

Header Params

Body Params multipart/form-data

Request Code 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 DELETE 'https://api.verilobi.com/verilobi-hotel/account/reservation/' \
--header 'X-Api-Key;' \
--header 'Token-Key;'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 200,
    "message": "Success",
    "info": {
        "activePage": 1,
        "pageCount": 1,
        "recordCount": 1,
        "elapsedTime": 100
    },
    "response": {
        "mapid": 18,
        "mapname": "Plaj A",
        "mapstatus": true,
        "maporder": 15,
        "mapimage": "12345-67890.jpg",
        "mapupdate": "2025-04-04 23:08:45",
        "mapalloworder": true,
        "mapallowopen": true,
        "mapcontent": ""
    }
}
Previous
Create Reservation
Next
Move Account Copy