This is an API that allows you to schedule the start and end of content publication.
You can also cancel any scheduled reservations that have been set.
This is the authentication key required for requests to the Management API.
Please enable the default permission "Change Content Scheduling" for the Management API and include it in the request headers when sending.

If the X-MICROCMS-API-KEY is identifiable, it may allow unauthorized manipulation of content by third parties. Please handle it with care. For more details, please refer to "API Key (API Authentication and Permission Management)".
Specify the format of the data to be sent.
Since microCMS only handles data in JSON format, please specify application/json.
Please specify the publishTime and stopTime.
// When setting both publish time and stop time
// ※Existing publish start and end settings will be overwritten
{ "publishTime": "2026-01-13T06:31:24.668Z", "stopTime": "2026-01-14T06:31:24.668Z" }
// When setting only the publish time
// ※Existing publish end setting will be removed
{ "publishTime": "2026-01-13T06:31:24.668Z" }
// When setting only the stop time
// ※Existing publish start setting will be removed
{ "stopTime": "2026-01-14T06:31:24.668Z" }
// When removing existing publish start and end schedule settings
{}Specify as an ISO 8601 formatted date-time string.
Acceptable formats include the following:
2026-01-14T06:31:24.668Z2026-01-14T06:31:24.668Z, it will be interpreted as UTC (the example time is equivalent to 2026-01-14T06:31:24.668Z)2026-01-14T15:31:24.668+09:002026-01-14T06:31:24.668Z)null / "" will result in an error.{}) will remove the existing publish start and end schedule settings.If the update is successful, a 200 response will be returned.
If the update is successful, a response like the following will be returned.
{ "id": "some_content_id" }