Verilobi API
HomeBeach BotV-WorkV-BuildingV-Worker
HomeBeach BotV-WorkV-BuildingV-Worker
🔗 Teknolobi
🔗 Verilobi
  1. Maps
  • About Verilobi Hotel
  • Maps
    • Get Maps
      GET
    • Add Map
      POST
    • Update Map
      PUT
    • Delete Map
      DELETE
  • Other
    • Generate Token
      POST
    • Check Notifications
      GET
    • Get Global Parameters
      POST
  • Languages
    • Get Languages
      GET
    • Get Language Variable
      GET
    • Create New Language
      POST
    • Set Language Variable
      PUT
  • Products
    • Get Languages
      GET
    • Get Language Variable
      GET
    • Create New Language
      POST
    • Set Language Variable
      PUT
  • Requests
    • Cancel Request
      POST
    • Close Request
      POST
    • Get Requests
      GET
    • Get Language Variable
      GET
    • Create New Language
      POST
    • Set Language Variable
      PUT
  • Menu
    • Get Menu
      GET
    • Get Menu Groups
      GET
    • Get Menu Categories
      GET
  • Accounts
    • Open Account
    • Move Account
    • Merge Accounts
    • Split Accounts
    • Create Reservation
    • Delete Reservation
    • Move Account Copy
    • Get Account
  • Order
    • Delete Order
    • Cancel Order
    • Approve Order
    • Create Order
  1. Maps

Add Map

POST
https://api.verilobi.com/verilobi-hotel/map

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

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 POST 'https://api.verilobi.com/verilobi-hotel/map' \
--header 'X-Api-Key;' \
--header 'Token-Key;' \
--form 'mapname=""' \
--form 'mapstatus=""' \
--form 'maporder=""' \
--form 'mapalloworder=""' \
--form 'mapallowopen=""' \
--form 'image=@""'

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
Get Maps
Next
Update Map