hngprojects / hng_boilerplate_nestjs

Description
Apache License 2.0
181 stars 105 forks source link

[FIX](PHP) Refactoring API Endpoint for "Create an Email Template" #1053

Open 65432125 opened 3 weeks ago

65432125 commented 3 weeks ago

Description

The API Endpoint for creating an Email Template

Route

POST: /api/v1/EmailTemplate

Request Body

{
  "name": "string",
  "subject": "string",
  "template_body": "string",
  "placeholders": {
    "key": "value",
    "key2": "value"
  }
}

Response Body

{
  "data": {
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "name": "string",
    "subject": "string",
    "template_body": "string",
    "placeholders": {
      "key": "value",
      "key2": "value"
    }
  },
  "message": "string",
  "status_code": 0
}
sparkybug commented 3 weeks ago

Done with this.