Enroll a new driver
Let's suppose that SallyAnn (Nana) wants to add herself to the family's driving rota to ease their load.
In this tutorial, you will learn how to enroll a new driver in the service.
Expect this tutorial to take about 15 minutes to complete.
Before you start
Before you start this tutorial:
- Complete all the prerequisites on the development system you'll use for the tutorial.
- Open the Postman app, which you'll use to test your API calls.
Enroll a new driver
To enroll a new driver, make a POST
call to the drivers
resource.
- To create a new request in Postman, click New > HTTP. Give the request a title.
-
Specify these request values in the right-frame window:
UI Element Values Required Notes METHOD POST Required Locate the drop-down menu next to the URL field. URL {server_url}/drivers
Required Headers Content-Type
Optional The format of the data to be posted. Default value is application/json. -
In the request body, POST a JSON representation of SallyAnn's
drivers
object like this. You can change the values of each property as you’d like. -
Click Send to make the request.
- Review the response body. The driver's id is automatically generated when the driver object is created.
[
{
"driverName": "SallyAnn Issac",
"driverIdentity": "Nana",
"cellPhone": "(555)555-9874",
"email": "s.issac@gmail.com"
"id": "00ad"
}
]