Business Hour Management
APIs for managing business hour
Get all Business hours
GET
https://{yoursubdomain}.oncaller.asia/api/v1/setting/business-hour
This endpoint allows you to get all business hours.
Query Parameters
search
string
Name of business hour to search
limit
number
Limit result per page
asc
boolean
Order by ASC mode or not
Headers
Authentication
string
Bearer + {token}
Get a Business hour by ID
GET
https://{yoursubdomain}.oncaller.asia/api/v1/setting/business-hour/:id
Get a business hour by id
Path Parameters
id
number
Id of Business. Ex: 1
Headers
Authentication
string
Bearer + {token}
Create new Business hour
POST
https://{yoursubdomain}.oncaller.asia/api/v1/setting/business-hour
Path Parameters
Authentication
string
Bearer + {token}
Request Body
name
string
Name of Business hour. Ex: Working day
enabled
boolean
Is enabled or not. Default is true
days.*.day
string
Name of day. Ex: mon, tue, wed,thu,fri,sat,sun
days.*.open
string
The value of open hour, must valid format H:i. Ex: 07:30
days.*.close
string
The value of close hour, must valid format H:i. Ex: 17:30
Delete Business hour
DELETE
https://{yoursubdomain}.oncaller.asia/api/v1/setting/business-hour/:id
Delete a business hour
Path Parameters
id
number
ID of business hour
Last updated
Was this helpful?