Logo PopinaPopina API

Google Check Availability

Allows google to check the availability of several slot times at once.

POST/v3/BatchAvailabilityLookup
authorization<token>

To get an API key, please contact us. We'll be happy to help you.

In: header

merchant_idstring
Formatuuid
slot_time

Response Body

application/json

curl -X POST "http://localhost:4008/v3/BatchAvailabilityLookup" \  -H "Content-Type: application/json" \  -d '{    "merchant_id": "500924a8-3f5e-4c00-beb8-2efcde988aea",    "slot_time": [      {        "service_id": "string",        "start_sec": 0,        "duration_sec": 0,        "resource_ids": {          "party_size": -9007199254740991        }      }    ]  }'
{
  "slot_time_availability": [
    {
      "slot_time": {
        "service_id": "string",
        "start_sec": 0,
        "duration_sec": 0,
        "availability_tag": "string",
        "resource_ids": {
          "party_size": -9007199254740991
        }
      },
      "available": true
    }
  ]
}