POST api/BOProfile/getAddEditBusinessHours
Request Information
URI Parameters
None.
Body Parameters
BusinessHoursReqModel| Name | Description | Type | Additional information | 
|---|---|---|---|
| days | Collection of DayData | None. | |
| isOutsideSetTime | integer | None. | |
| all_Business_Hours | integer | None. | |
| flag | integer | None. | |
| serviceid | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "days": [
    {
      "day": "sample string 1",
      "StartingTime": "sample string 2",
      "EndingTime": "sample string 3"
    },
    {
      "day": "sample string 1",
      "StartingTime": "sample string 2",
      "EndingTime": "sample string 3"
    }
  ],
  "isOutsideSetTime": 3,
  "all_Business_Hours": 4,
  "flag": 5,
  "serviceid": 7
}
        application/xml, text/xml
            Sample:
        
<BusinessHoursReqModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <BusinessId>1</BusinessId>
  <Userid>2</Userid>
  <days>
    <DayData>
      <day>sample string 1</day>
      <StartingTime>sample string 2</StartingTime>
      <EndingTime>sample string 3</EndingTime>
    </DayData>
    <DayData>
      <day>sample string 1</day>
      <StartingTime>sample string 2</StartingTime>
      <EndingTime>sample string 3</EndingTime>
    </DayData>
  </days>
  <isOutsideSetTime>3</isOutsideSetTime>
  <all_Business_Hours>4</all_Business_Hours>
  <flag>5</flag>
  <Err>6</Err>
  <serviceid>7</serviceid>
</BusinessHoursReqModel>
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
VCAPIResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| Version | string | None. | |
| dateTime | string | None. | |
| StatusCode | integer | None. | |
| ErrorMessage | string | None. | |
| Result | Object | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Version": "1.0.0",
  "dateTime": "2025/10/31 15:36:16",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}
        application/xml, text/xml
            Sample:
<VCAPIResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <StatusCode>1</StatusCode> <ErrorMessage>sample string 2</ErrorMessage> <Result /> </VCAPIResponse>