DELETE
/
v2.0
/
management
/
connections
  curl -X DELETE "https://management.smartcar.com/v2.0/management/connections/?user_id=UUID12345&vehicle_id=UUID67890" \
  -H "Authorization: Basic $(echo -n "default:$SMARTCAR_APP_MANAGEMENT_TOKEN" | base64)"
{
  "connections": [
    {
      "userId": "<string>",
      "vehicleId": "<string>"
    }
  ]
}

Request

Header
Authorization
string
required
In the format Basic base64(default:{application_management_token}). You can find your application_management_token under your Application Configuration in the Smartcar Dashboard.
Query
user_id
string
vehicle_id
string
You can delete connections in three ways:
  • Provide a vehicle_id to remove all connections for that vehicle across all users.
  • Provide a user_id to remove all vehicles linked to that user.
  • Provide both a vehicle_id and user_id to remove only that vehicle for that specific user.
  curl -X DELETE "https://management.smartcar.com/v2.0/management/connections/?user_id=UUID12345&vehicle_id=UUID67890" \
  -H "Authorization: Basic $(echo -n "default:$SMARTCAR_APP_MANAGEMENT_TOKEN" | base64)"
{
  "connections": [
    {
      "userId": "<string>",
      "vehicleId": "<string>"
    }
  ]
}

Response

connections
array
An array of connections