Retail Documentation
  1. Gives / Dontation
Retail Documentation
  • Events
    • Register For Events
      POST
  • NewsLetters
    • Get All Subcribers
      GET
    • Add New Subcribers
      POST
    • Send Mails To Subscribers
      POST
  • Stores
    • Get All Stores
      GET
    • Update Store
      PUT
    • Delete Store
      DELETE
    • Get Specific Store
      GET
    • Search Store
      POST
    • Add A New Store
      POST
  • Gives / Dontation
    • Get All Gives
      GET
    • Add A Give
      POST
  • Payment Gateway
    • Make Payment
      POST
  • Blog
    • Get All Blogs
      GET
    • Update Blog
      PUT
    • Get A Specific Blog
      GET
    • Delete Blog
      DELETE
    • Create New Blog
      POST
  • Admin
    • Admin Login
      POST
    • Admin Signup
      POST
    • Logout
      GET
  • Communities
    • Join Our Comunities
      POST
    • List of Users In Our Communities
      GET
  • Praise Report Form
    • Insert New Praise Form
    • Get All Praise Report Form
  • Welcome Section
    GET
  • Contact Us
    POST
  1. Gives / Dontation

Add A Give

POST
/give

Request

Body Params application/json

Examples

Responses

🟢201
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/give' \
--header 'Content-Type: application/json' \
--data-raw '{
    "fullname": "abdullah yahaya",
    "address": "Elere Police Barrack, Agege, Lagos",
    "city": "Lagos",
    "telephone": "08089887648",
    "email": "abdullahyahaya34@gmail.com"
}'
Response Response Example
{
    "msg": "GIVE_SUCCESSFULLY_INSERTED",
    "status": true,
    "message": {
        "fullname": "abdullah yahaya",
        "address": "Elere Police Barrack, Agege, Lagos",
        "city": "Lagos",
        "telephone": "08089887648",
        "email": "abdullahyahaya34@gmail.com",
        "_id": "62c9a3d351d113fc71ee86ab",
        "createdAt": "2022-07-09T15:50:43.378Z",
        "updatedAt": "2022-07-09T15:50:43.378Z",
        "__v": 0
    }
}
Modified at 2026-03-12 11:22:01
Previous
Get All Gives
Next
Make Payment
Built with