Schedular
  1. feedback
Schedular
Actual Apis Schedula
  • Actual Apis Schedula
  • Dev Cases For Schedula
  • Auth
    • Register For Doctor
      POST
    • Register For Patients
      POST
    • Registration For Admin
      POST
    • Registration Error Username & Email should be unique
      POST
  • Login
    • Log in for Doctor
      POST
    • Admin Log in
      POST
    • Log in Error
      POST
  • Roles
    • Get roles related to a role
      POST
    • Permissions for roles
      POST
    • Delete Permissions
      POST
    • Add permission for roles
      POST
  • Patient
    • Get all patients details
      POST
    • get single patient details
      POST
    • Modify patient details
      POST
    • Delete patient
      POST
  • Timings
    • Get all timings for a doctor
      POST
    • add timings for doctor
      POST
    • Update timings
      POST
    • Delete timings
      POST
  • Support ticket
    • Get all support Tickets
      POST
    • Add support ticket
      POST
    • update support ticket
      POST
    • Delete Support Ticket
      POST
  • feedback
    • Get feedback
      POST
    • Create Feedback
      POST
    • Update Feedback
      POST
    • Delete Feedback
      POST
  • Chat
    • Get all chat
    • Create chat
    • Update chat
    • Delete chat
    • Chat Subscription
  • Doctor
    • Get all Doctors
    • get single doctor
    • Update doctor details
    • Delete Doctor details
    • search doctor
    • Search Appointment
    • Get all appointmet slots
  • Appointment
    • get all appointment for patient
    • get appointment for doctor
    • Create appointment
    • Delete appointment
    • Update Appointment
    • Bulk update Appointment
  1. feedback

Create Feedback

POST
http://localhost:3000/graphql
Mutation
variables
{
  "feedbackData": {
    "clinic_or_hospital_feedback": 3,
    "consulting_feedback": 4,
    "patient_user_id": 5,
    "doctor_user_id": 4,
    "waiting_time": 5
  }
}

Request

Header Params
Authorization
string 
optional
Default:
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImRldjEiLCJ1c2VySWQiOjQsInVzZXJfYXNzaWdubWVudCI6ImFkbWluIiwiaWF0IjoxNzI3MzYxMDk0LCJleHAiOjE3MjczNjQ2OTR9.Zckr61S0kHq7ZogL6aI7FTeF45rSMqZM74YQ1_MAqoA

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:3000/graphql' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImRldjEiLCJ1c2VySWQiOjQsInVzZXJfYXNzaWdubWVudCI6ImFkbWluIiwiaWF0IjoxNzI3MzYxMDk0LCJleHAiOjE3MjczNjQ2OTR9.Zckr61S0kHq7ZogL6aI7FTeF45rSMqZM74YQ1_MAqoA'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "data": {
        "createFeedback": {
            "clinic_or_hospital_feedback": 3,
            "consulting_feedback": 4,
            "id": 6,
            "patient_user_id": 5,
            "waiting_time": 5
        }
    }
}
Modified at 2024-09-26 09:28:45
Previous
Get feedback
Next
Update Feedback
Built with