Updates a draft post.
You can only call this method when authenticated as a Wix app or Wix user identity.
Draft post ID.
Draft post to update.
Action to perform on the post.
Default: UPDATE
Post publish schedule date if action
is set to UPDATE_SCHEDULE
.
List of additional draft post fields to include in the response. For example, use the URL
fieldset to retrieve the url field in
the response in addition to the draft post's base fields. Base fields don’t include any of the supported fieldset values. By default
only the draft post's base fields are returned.
Updated draft post info.
curl -X PATCH \
'https://www.wixapis.com/blog/v3/draft-posts/448d1238-0072-4458-a280-bf81c2dd8af1' \
-H 'Content-Type: application/json' \
-H 'Authorization: <AUTH>'
-d '{
"draftPost": {
"title": "Places to visit in Europe"
}
}'
{
"draftPost": {
"id": "448d1238-0072-4458-a280-bf81c2dd8af1",
"title": "Places to visit in Europe",
"featured": false,
"categoryIds": [],
"memberId": "2d24cb8a-adcc-466a-ab59-fa74e0889a39",
"hashtags": [],
"commentingEnabled": true,
"minutesToRead": 0,
"tagIds": [],
"relatedPostIds": [],
"pricingPlanIds": [],
"language": "en",
"changeOrigin": "AUTO_SAVE",
"contentId": "622f285f7952527f485bc138",
"editingSessionId": "0aca7f65-1237-482e-bf51-6d14102ee691",
"status": "UNPUBLISHED",
"mostRecentContributorId": "2d24cb8a-adcc-466a-ab59-fa74e0889a37",
"hasUnpublishedChanges": true,
"editedDate": "2022-03-14T11:34:55.121Z",
"seoData": {
"tags": []
},
"seoShowInSearch": true,
"seoShowSnippetInSearch": true,
"slugs": [],
"createdDate": "2022-03-14T11:34:55.121Z"
}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.