- Readme
- Developer Guide
- Authorization
- Includables
- Pagination
- Sorting
- Retrieve Market Information
- Retrieve Branch Information
- Me
- Branches
- Orders
- Customers
- Products
- Product Categories
- Discounts
- Payment Methods
- Table
- Printer
- Webhook
- Orders Webhooks
- Product Webhooks
- Loyalty Webhooks
- Customers Webhooks
- Error Webhook
- Third-Party
Install Ballurh
Developing
DEVELOPMENT
DEVELOPMENT
POST
/api/v1/app
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
app_id
string
required
market_id
string
required
api-key
string
required
Example
{
"app_id": "ballurh",
"market_id": "7ba11b78-aa83-45aa-9f0a-1b8bf4d18480",
"api-key": "e206ddba-01d2-6a70-316b-6e78ad314ef3"
}
Request 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 '/api/v1/app' \
--header 'Content-Type: application/json' \
--data-raw '{
"app_id": "ballurh",
"market_id": "7ba11b78-aa83-45aa-9f0a-1b8bf4d18480",
"api-key": "e206ddba-01d2-6a70-316b-6e78ad314ef3"
}'
Responses
🟢200OK
application/json
Body
message
string
required
xid
string
required
Example
{
"message": "Application Submited. Please check your email regularly to get login credentials",
"xid": "5c2ab9d2-f7ff-49e9-9727-34ac1908e17b"
}
Modified at 2024-02-28 19:18:34