Skip to main content
POST
/
dmvfees
Create a new DMV Fee
curl --request POST \
  --url https://commerce.driv.ly/api/dmvfees \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "id": "<string>",
  "actualFee": 123,
  "estimateFee": 123,
  "taxesAndFees": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "actualFee": 123,
    "estimateFee": 123,
    "taxesAndFees": "<string>"
  },
  "success": true
}

Query Parameters

depth
integer

The number of levels of related objects to include in the response

Body

application/json
name
string
required

DMV Fee has Name

id
string

DMV Fee is uniquely identified by id

actualFee
number

DMV Fee has Actual Fee

Must be a multiple of 0.01
estimateFee
number

DMV Fee has Estimate Fee

Must be a multiple of 0.01
taxesAndFees

Taxes & Fees includes DMV Fee

Response

DMV Fee Created

data
DMV Fee · object
success
boolean