---
title: "Update queue settings"
method: POST
path: "/uploadposts/queue/settings"
tags: ["Queue System"]
---

# Update queue settings

`POST /uploadposts/queue/settings`

Update the queue configuration (timezone, time slots, active days) for a profile.

## Request body

- object
  - `profile_username` string, required — The profile to update settings for.
  - `timezone` string — IANA timezone (e.g., 'Europe/London').
  - `slots` QueueSlot[] — Array of slot objects. Max 24 slots.
    - `hour` integer, required — Hour of the slot (0-23).
    - `minute` integer, required — Minute of the slot (0-59).
  - `days_of_week` integer[] — Active days: 0=Monday, 1=Tuesday, ..., 6=Sunday.

## Response `200`

Queue settings updated successfully.

- QueueSettingsResponse
  - `success` boolean
  - `queue_settings` QueueSettings
    - `timezone` string — IANA timezone.
    - `slots` QueueSlot[]
      - `hour` integer, required — Hour of the slot (0-23).
      - `minute` integer, required — Minute of the slot (0-59).
    - `days_of_week` integer[] — Active days: 0=Monday through 6=Sunday.

## Other responses

- `401` — Unauthorized — Invalid or expired token.

---

[API](https://skmtc.dev/upload-post/apis/upload-post-api.md) · [All operations](https://skmtc.dev/upload-post/apis/upload-post-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/upload-post/upload-post-api/revisions/10bd964e4415/schema)
