A plugin to publish blogs to your WordPress website.
/update-post
The /update-post
endpoint is used to update an existing post with the specified parameters such as title, content, status, author, and featured image.
/wp-json/sm-connect/v1/update-post
POST
application/json
To update a post, make a POST
request with the required parameters included in the query string. You must also include an Authorization
header with a valid Bearer token.
Header | Value |
---|---|
Authorization | Bearer <your_access_token> |
Parameter | Type | Description |
---|---|---|
id | int | The ID of the post to be updated. |
title | string | The new title for the post. |
content | string | The new content for the post. |
status | string | The new status of the post (e.g., publish ). |
author | int | The ID of the author of the post. |
featured_image | string | URL of the new featured image for the post. |
$http({
method: 'POST',
url: 'SITE_URL/wp-json/sm-connect/v1/update-post',
headers: {
'Authorization': 'Bearer <your_access_token>',
'Content-Type': 'application/json'
},
params: {
id: 97,
title: 'Updated',
content: 'Updated',
status: 'publish',
author: 1,
featured_image: 'https://cdn.pixabay.com/photo/2018/07/10/21/53/tournament-3529744_1280.jpg'
}
}).then(function successCallback(response) {
console.log('Post updated:', response.data.data);
}, function errorCallback(response) {
console.error('Error:', response.data.message);
});