Creates a new truck driver.
Code | Description |
---|---|
400 | Bad Request. |
404 | Resource Not Found. |
500 | Internal Server Error. |
curl "https://app.octopi.co/api/v1/truck_drivers.json" -d '{"truck_driver": { "number": "1231NU78", "first_name": "Juan", "last_name": "Torres", "license_number": "N/A" }}' -X POST -H "Accept: application/json" -H "Content-Type: application/json" -H "Authorization: Token token=YOURTOKEN"
Param name | Description |
---|---|
first_name required |
The first name of the driver. Validations:
|
last_name required |
The last name of the driver. Validations:
|
license_number required |
The license number of the driver or N/A if not available. Validations:
|
number optional |
A unique number used by the terminal to identify the driver. Validations:
|
trucking_company_name optional |
Name of the trucking company for the driver. Validations:
|