GET
/
consumers
/
{consumer_id}
/
pms
/
closures
/
{date}
curl --request GET \
  --url https://api.chift.eu/consumers/{consumer_id}/pms/closures/{date} \
  --header 'Authorization: Bearer <token>'
{
  "date": "2025-01-01",
  "status": "closed"
}

Authorizations

Authorization
string
header
required

This access token needs to be included in each of your request to the Chift API.

Path Parameters

consumer_id
string
required
date
string
required

Query Parameters

location_id
string

Response

200
application/json
Successful Response
date
string
required

Date of the closure

Example:

"2025-01-01"

status
enum<string>
required

Status of the closure

Available options:
open,
closed
Example:

"closed"