Allows for manually created Vehicles to be converted and controlled by the Monthly APIs. This allows customers to associate external IDs with existing Flash Vehicles.
Request #
Example #
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SetMonthlyVehicleExternalID xmlns="http://kleverlogic.com/webservices/">
<web:securityToken>YOUR_SECURITY_TOKEN</web:securityToken>
<web:locationID>LOCATION_ID</web:locationID>
<web:flashAccountNumber>FLASH_ACCOUNT_NUMBER</web:flashAccountNumber>
<web:vehicleGUID>MONTHLY_CAR_GUID</web:vehicleGUID>
<web:vehicleID>CAR_ID</web:vehicleID>
</SetMonthlyVehicleExternalID>
</soap:Body>
</soap:Envelope>
Parameters #
Value | Required Field | Description | Data Type |
YOUR_SECURITY_TOKEN | Yes | We provide you with a security token in GUID format Note that this security token will differ from location to location. Your security token for the Monthly API is not used globally across all locations. We will provide you with a different security token per each location you create monthly accounts for. | string (GUID format) |
LOCATION_ID | Yes | We provide you with a location ID in GUID format. The location ID corresponds with the location you are creating monthly accounts for. | string (GUID format) |
FLASH_ACCOUNT_NUMBER | Yes | Flash system generated account number. | string |
MONTHLY_CAR_GUID | Yes | Flash generated unique value in GUID format. | string (GUID format) |
CAR_ID | Yes | Third Party system generated unique value or the Flash Internal account number. This is the value that is desired to set the External Car ID to. The Third Party car ID number is external and different from the internal car ID generated by the Flash system. | string |
Response #
Example #
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SetMonthlyVehicleExternalIDResponse xmlns="http://kleverlogic.com/webservices/">
<SetMonthlyVehicleExternalIDResult>
<Code>Success or GeneralFailure or InvalidLogin or InvalidLocation or NotFound</Code>
<Message>string</Message>
</SetMonthlyVehicleExternalIDResult>
</SetMonthlyVehicleExternalIDResponse>
</soap:Body>
</soap:Envelope>
Parameters #
The response should include a SetMonthlyVehicleExternalID object with the following data:
Field | Description |
Code | If the request succeeded, the value of RESULT_CODE will be Success. If the request failed, a relevant error code will be provided. |
Message | A message with clarifying information about the result is provided in this field |