title | method | slug |
---|---|---|
updatePostById |
PATCH |
/api/v1/posts/update-post-by-id |
https://yourdomain.com/api/v1/post/update/:postId
Key | Value | Description |
---|---|---|
Authorization | Bearer {{AuthToken}} |
Authorization token |
Content-Type | application/json |
Fields | Type | Description | Required |
---|---|---|---|
title | String |
Title of the post | true |
bodyMarkdown | String |
Description of the post | true |
Fields | Type | Description | Required |
---|---|---|---|
postId | String |
Post ID | true |
Example
https://yourdomain.com/api/v1/post/update/1
{
"title": "New title",
"description": "Update description"
}
Fields | Type | Description |
---|---|---|
status.code | Integer |
Response code from server |
status.type | String |
Response status type (success/fail) |
posts | Object |
Post data |
You can see post data object in createPost.
Example
{
"status": {
"code": 200,
"type": "success"
},
"post": {
// post data oboject
}
}