Blog APi
  1. Blogs
Blog APi
  • blogs
    • Blogs
      • Delete Blog
        DELETE
      • Get Blog
        GET
      • Add Blog
        POST
      • Get All Blogs
        GET
      • Update Blog
        PATCH
    • Authentication
      • Register User
      • Login
  1. Blogs

Update Blog

Developing
PATCH
http://localhost:8080/api/v1/blogs/{id}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'http://localhost:8080/api/v1/blogs/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "title": "string",
    "description": "string"
}'
Response Response Example
{}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Modified at 2025-06-03 21:38:55
Previous
Get All Blogs
Next
Register User
Built with