Add a Driver Custom Field to Your Account
POST/settings/drivers/custom-fields
Creates a new driver custom field for your account. Once created, every driver in your fleet can be given a value for it through PUT /drivers/{driver_id}/custom-fields. You only define it once here, not per driver.
Pick a type that actually matches what you're storing. Every value written is validated against the field's type, so bad data gets rejected immediately. Only set is_required to true if every driver must carry a value for this field going forward. It does not retroactively require existing drivers to have one.
Your account can hold up to 10 driver custom fields at a time. Once you're at that limit this returns 422. Deleted fields don't count towards the limit.
Request
Responses
- 200
- 401
- 403
- 422
- 500
Successful operation
Unauthorized access. Authentication is required.
Access is forbidden. The user does not have permission to access this resource.
Validation failed for the input parameters.
Internal server error.