---
title: "Create weekly schedule"
method: POST
path: "/api/chargers/{chargerId}/schedules/weekly"
tags: ["Weekly"]
---

# Create weekly schedule

`POST /api/chargers/{chargerId}/schedules/weekly`

Creates a new weekly repeating schedule in the charger's scheduling state.

## Path parameters

- `chargerId` string, required

## Request body

- ChargeSchedulingAPICreateWeeklyScheduleRequest
  - `enabled` boolean — Whether the schedule is enabled. Enabled schedules are automatically installed to the charger.
  - `timezone` string — IANA timezone identifier of timezone to use for the schedule.
  - `periods` ChargeSchedulingAPIWeeklySchedulePeriod3[], nullable — Collection of time periods during which charging is permitted. Limited to a maximum of 18 periods.
    - `startDay` 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday'
    - `startTime` string, time, nullable — The time of day on which the schedule period begins.
    - `stopDay` 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday'
    - `stopTime` string, time, nullable — The time of day on which the schedule period ends.
    - `maximumAmps` integer — The maximum electrical current in amperes permitted by the schedule during this charging period.

## Response `200`

- ChargeSchedulingAPICreateWeeklyScheduleResponse
  - `enabled` boolean — Whether the schedule is enabled. Enabled schedules are automatically installed to the charger.
  - `timezone` string — IANA timezone identifier of timezone to use for the schedule.
  - `periods` ChargeSchedulingAPIWeeklySchedulePeriod2[] — Collection of time periods during which charging is permitted.
    - `startDay` 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday'
    - `startTime` string, time — The time of day on which the schedule period begins.
    - `stopDay` 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday'
    - `stopTime` string, time — The time of day on which the schedule period ends.
    - `maximumAmps` integer — The maximum electrical current in amperes permitted by the schedule during this charging period.

## Other responses

- `400`
- `409` — Conflict
- `500` — Internal Server Error

---

[API](https://skmtc.net/easee/apis/easee-cloud-api.md) · [All operations](https://skmtc.net/easee/apis/easee-cloud-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/easee/easee-cloud-api/revisions/46ccab4af8b1/schema)
