hngprojects / hng_boilerplate_php_laravel_web

Apache License 2.0
148 stars 58 forks source link

[FIX](PHP) Refactor Blog API Endpoint for Retrieving a Blog Entry by ID #587

Closed Cytochrome123 closed 3 weeks ago

Cytochrome123 commented 3 weeks ago

Description

Route:

GET /api/v1/blogs/{id}

Response Body:

Status Code: 200 OK

{

  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",

  "title": "string",

  "image_url": "string",

  "content": "string",

  "published_date": "2024-08-24T17:28:27.172Z",

  "updated_date": "2024-08-24T17:28:27.172Z",

  "author_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",

  "category": "Startup",

  "comments": [

    {

      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",

      "content": "string",

      "created_at": "2024-08-24T17:28:27.172Z"

    }

  ]

}

Status Code:

404 Not Found

{

  "data": "string",

  "error": "string",

  "message": "string",

  "status_code": 0

}