MealsOrderingApplication
  1. Driver
MealsOrderingApplication
  • Category
    • GetAll
      GET
    • Add
      POST
    • GetById
      GET
    • Update
      PUT
    • Delete
      DELETE
  • Meal
    • GetAll
      GET
    • Add
      POST
    • GetById
      GET
    • Update
      PUT
    • Delete
      DELETE
  • Drink
    • GetAll
      GET
    • Add
      POST
    • GetById
      GET
    • Update
      PUT
    • Delete
      DELETE
  • Auth
    • Register
      POST
    • Login
      POST
  • Customer
    • GetAll
      GET
    • Add
      POST
    • GetById
      GET
    • Update
      PUT
    • Delete
      DELETE
  • Admin
    • GetAll
    • Add
    • GetById
    • Update
    • Delete
  • Driver
    • GetAll
      GET
    • Add
      POST
    • GetById
      GET
    • Update
      PUT
    • Delete
      DELETE
  • Order
    • GetAll
    • Add
    • GetById
    • Update
    • Delete
  • Review
    • GetAll
    • Add
    • GetById
    • Update
    • Delete
  1. Driver

Update

PUT
/api/Drivers/b3476c56-61f9-482e-8274-03c19ed61c86

Request

Body Params application/json
object {0}
Example
{
    // "FirstName": "admin3",
    // "LastName": "admin3",
    // "Email": "admin3@test.com",
    // "Username": "admin3",
    // "Password": "P@ssw0rd"
}

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 PUT 'http://127.0.0.1:5051/api/Drivers/b3476c56-61f9-482e-8274-03c19ed61c86' \
--header 'Content-Type: application/json' \
--data-raw '{
    // "FirstName": "admin3",
    // "LastName": "admin3",
    // "Email": "admin3@test.com",
    // "Username": "admin3",
    // "Password": "P@ssw0rd"
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-04-27 19:29:51
Previous
GetById
Next
Delete
Built with