Verilobi API
HomeBeach BotV-WorkV-BuildingV-Worker
HomeBeach BotV-WorkV-BuildingV-Worker
🔗 Teknolobi
🔗 Verilobi
  1. Products
  • 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
      • Get Language Variable
        GET
      • Create New Language
        POST
      • Set Language Variable
        PUT
    • 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. Products

Create New Language

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

Description#

This endpoint adds a new language to the application and automatically translates it.

Features:#

  • Endpoint: /languages
  • Operation Name: Create New Language
  • Header Parameters:
    • X-Api-Key: string (required) - API Key
    • Token-Key: string (required) - Access token
  • Body Parameters (multipart/form-data):
    • name: string (required) - Example: Русский
    • name-english: string (required) - Example: Russian
    • short-code: string (required) - Exactly 2 characters; Examples: ru, en, tr
    • char-code: string (required) - Exactly 5 characters; Examples: ru-RU, en-US, tr-TR

Usage Scenario:#

  • The client sends valid X-Api-Key and Token-Key in the header.
  • The required language details are provided in the body using multipart/form-data.
  • The endpoint adds the new language to the application and performs automatic translation based on the input.

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/languages' \
--header 'X-Api-Key;' \
--header 'Token-Key;' \
--form 'name=""' \
--form 'name-english=""' \
--form 'short-code=""' \
--form 'char-code=""'

Responses

🟢200Success
application/json
Body

Example
{
    "statusCode": 200,
    "statusMessage": "Success",
    "response": 0
}
Previous
Get Language Variable
Next
Set Language Variable