Schedular
  1. Doctor
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
    • Add support ticket
    • update support ticket
    • Delete Support Ticket
  • feedback
    • Get feedback
    • Create Feedback
    • Update Feedback
    • Delete Feedback
  • Chat
    • Get all chat
    • Create chat
    • Update chat
    • Delete chat
    • Chat Subscription
  • Doctor
    • Get all Doctors
      POST
    • get single doctor
      POST
    • Update doctor details
      POST
    • Delete Doctor details
      POST
    • search doctor
      POST
    • Search Appointment
      POST
    • Get all appointmet slots
      POST
  • Appointment
    • get all appointment for patient
    • get appointment for doctor
    • Create appointment
    • Delete appointment
    • Update Appointment
    • Bulk update Appointment
  1. Doctor

Delete Doctor details

POST
http://localhost:3000/graphql
Mutation
variables
{
  "deleteDoctorByIdId": 2
}

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": {
        "deleteDoctorById": {
            "message": "Doctor deleted successfully",
            "status": "success"
        }
    }
}
Modified at 2024-09-26 09:56:30
Previous
Update doctor details
Next
search doctor
Built with