Dettaglioauto SA - API Collection V1
  1. Branch Times
Dettaglioauto SA - API Collection V1
  • Vehicle Size
    • List Vehicle Sizes
      GET
  • Catalog
    • List categories with services
      GET
  • Region
    • List regions
      GET
  • Branch
    • List Branches
      GET
  • Branch Times
    • List Days
      GET
    • List Hours
      GET
  • Booking
    • Store Booking
      POST
    • List Bookings
      GET
  • Payment
    • Get Payment Details
      GET
  • Coupon
    • Apply Coupon
      POST
  • Cart
    • Initialize Cart
      POST
    • Add To Cart
      POST
    • Get Cart
      GET
    • Remove Cart Item
      DELETE
    • Clear Cart
      DELETE
  1. Branch Times

List Hours

GET
/v1/branch/{{branch_uuid}}/hours/{{date}}
branch/{{branch_uuid}}/hours/{{date}}
{{branch_uuid}}
Required field , String type, The UUID of the branch. Obtained from the /branches API.
{{date}}
Required field, Date type, Desired date (format: YYYY-MM-DD). Obtained from the /branch/{branchuuid}/days API.

Request

Header Params

Body Params multipart/form-data

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://dev.your-api-server.com/v1/branch/{{branch_uuid}}/hours/{{date}}' \
--header 'Customer-Key: {{Customer-Key}}' \
--header 'Secret-Key: {{Secret-Key}}' \
--header 'Accept-Language: {{Accept-Language}}'
Response Response Example
{
    "success": true,
    "message": "success",
    "data": {
        "times": [
            {
                "time": "00:00",
                "disabled": true
            },
            {
                "time": "01:00",
                "disabled": true
            },
            {
                "time": "14:00",
                "disabled": false
            },
            {
                "time": "15:00",
                "disabled": false
            },
            {
                "time": "16:00",
                "disabled": false
            },
            {
                "time": "21:00",
                "disabled": false
            },
            {
                "time": "22:00",
                "disabled": false
            },
            {
                "time": "23:00",
                "disabled": false
            }
        ]
    }
}
Modified at 2025-12-26 13:13:15
Previous
List Days
Next
Store Booking
Built with