This is the API for changing the content creator.
This is the authentication key required for PATCH API requests.
Please enable the "Change Content Creator" option with the default permissions of the Management API and include it in the request header 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 Authorization Management)".
Specifies the format of the data being sent.
Since microCMS only handles data in JSON format, please specify application/json.
Please specify the member ID in createdBy.
The member ID can be confirmed from the Member Details Screen in the management console or from the Get Members API.
{"createdBy": "[Member ID]"}curl -X PATCH -H 'X-MICROCMS-API-KEY: [API Key]' -H 'Content-Type: application/json' https://[Service ID].microcms-management.io/api/v1/contents/[Endpoint]/[Content ID]/createdBy -d '{"createdBy": "[Member ID]"}'If the author is successfully changed, a 200 response will be returned.
If the author is successfully changed, a response like the following will be returned.
{"id":"some_content_id"}