Verilobi API
HomeBeach BotV-WorkV-BuildingV-Worker
HomeBeach BotV-WorkV-BuildingV-Worker
🔗 Teknolobi
🔗 Verilobi
  1. Other
  • About Verilobi API Documentation
  • Beach Bot
    • About Verilobi Hotel
    • Maps
      • Get Maps
      • Add Map
      • Update Map
      • Delete Map
    • Other
      • Generate Token
        POST
      • Check Notifications
        GET
      • Get Global Parameters
        POST
    • 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
      • Move Account
      • Merge Accounts
      • Split Accounts
      • Create Reservation
      • Delete Reservation
      • Move Account Copy
      • Get Account
    • 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. Other

Generate Token

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

Description#

This endpoint generates a Token-Key that authorizes subsequent API operations. The client must send the API key in the HTTP header under X-Api-Key along with the password in the request body.

Features:#

  • Endpoint: /token
  • Title: Generate Token
  • Input Parameters:
    • X-Api-Key: API key (provided in the HTTP header)
    • password: User password (provided in the request body)
  • Output:
    • If the operation is successful, a Token-Key is returned within the response, which is used to authorize further API operations.

Usage Scenario:#

  • The client sends the valid API key in the HTTP header under X-Api-Key.
  • The password is provided in the request body.
  • The provided credentials are validated.
  • Upon successful validation, a response containing the Token-Key is returned to the client.
  • This Token-Key is then used to authorize subsequent API operations.

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/token' \
--header 'X-Api-Key;' \
--form 'password=""'

Responses

🟢200Success
application/json
Body

Example
{
    "code": 200,
    "message": "Success",
    "info": {
        "activePage": 1,
        "pageCount": 1,
        "recordCount": 1,
        "elapsedTime": 100
    },
    "response": "vh-token-12345667890-12345667890"
}
Previous
Delete Map
Next
Check Notifications