Get Appointment

You can get list of available date and time for next 30 days for schedule recall consignment.

Get Recall consignment appointment

GET https://{{workspace}}.myeshopbox.com/api/v1/recall-consignment/timeSlotAvailability

This endpoint allows you to get recall consignment appointment date and time.

Query Parameters

NameTypeDescription

warehouseId

integer

Eshopbox warehouse id

Headers

NameTypeDescription

Authentication

string

The Bearer token which allows to grant access to the API.

{
 "items": [
  {
   "availabeDate": "2020-04-05",
   "availableUnits": "1000",
   "slotList": [
    {
     "startTime": "10:00:00",
     "endTime": "11:00:00"
    },
    {
     "startTime": "11:00:00",
     "endTime": "12:00:00"
    },
    {
     "startTime": "10:00:00",
     "endTime": "12:40:00"
    },
    {
     "startTime": "12:40:00",
     "endTime": "15:20:00"
    },
    {
     "startTime": "15:20:00",
     "endTime": "18:00:00"
    }
   ]
  },
  {
   "availabeDate": "2020-04-06",
   "availableUnits": "1000",
   "slotList": [
    {
     "startTime": "10:00:00",
     "endTime": "11:00:00"
    },
    {
     "startTime": "11:00:00",
     "endTime": "12:00:00"
    },
    {
     "startTime": "10:00:00",
     "endTime": "12:40:00"
    },
    {
     "startTime": "12:40:00",
     "endTime": "15:20:00"
    },
    {
     "startTime": "15:20:00",
     "endTime": "18:00:00"
    }
   ]
  }
 ]
}
curl -X GET https://{{workspace}}.myeshopbox.com/api/v1/recall-consignment/timeSlotAvailability \    
 -H "Authorization: Bearer XXXX"

Last updated