Shifts

The shifts resource.

Basehttps://rest.carbon.ms/shifts
GET/shifts

List shiftss

Retrieve a paginated list of shiftss. Filter, order, and select columns with PostgREST query parameters.

Query parameters

selectstring

Comma-separated columns to return. Defaults to all.

orderstring

Column to sort by, e.g. `createdAt.desc`.

limitinteger

Maximum rows to return.

offsetinteger

Rows to skip, for pagination.

GEThttps://rest.carbon.ms/shifts
curl --request GET \
  --url 'https://rest.carbon.ms/shifts?select=*&limit=10' \
  --header 'Authorization: Bearer <api-key>'
Response
[
  {
    "id": "abc123def456",
    "name": "Example",
    "startTime": "string",
    "endTime": "string",
    "locationId": "xyz789",
    "sunday": true,
    "monday": true,
    "tuesday": true
  }
]
GET/shifts

Retrieve a shifts

Fetch a single shifts by filtering on `id`.

Query parameters

idstring

Match on the shifts's `id`, e.g. `eq.{id}`.

GEThttps://rest.carbon.ms/shifts
curl --request GET \
  --url 'https://rest.carbon.ms/shifts?id=eq.%7Bid%7D' \
  --header 'Authorization: Bearer <api-key>'
Response
{
  "id": "abc123def456",
  "name": "Example",
  "startTime": "string",
  "endTime": "string",
  "locationId": "xyz789",
  "sunday": true,
  "monday": true,
  "tuesday": true
}