Get Tip Name List

get

/apis/tips-v1/{utilityCode}/energy_guide/customers/{id}/tips

Retrieve a sorted list of tip names for a particular customer. Sort order is the customer's expected energy savings for each tip, from highest to lowest savings.

Request

Path Parameters
Query Parameters
  • Channel to retrieve tips (VOICE, WEB).
  • If limit not specified then all tips are retrieved
  • The locale to retrieve tips in language_territory format which uses two letters for language and territory. For example en_US or fr_FR. The customer locale is used as the default. Only locales supported by the utility are allowed.
Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : TipNamesListResponse
Type: object
Response contains an array of tip names.
Show Source
Example:
{
    "response":[
        "tip001_buy_energy_star",
        "tip011_recycle_second_refrigerator",
        "tip059_use_power_strips",
        "tip069_install_efficient_showerheads",
        "tip070_reduce_water_heater_temperature",
        "tip047_use_efficient_lighting",
        "tip071_turn_off_water_heater_when_away",
        "tip060_unplug_devices",
        "tip018_improve_window_shading",
        "tip010_hang_dry_laundry",
        "tip015_maintain_ac",
        "tip001_buy_energy_star"
    ]
}
Nested Schema : response
Type: array
An array of tip names.
Show Source
Nested Schema : StringList
Type: array
Tip name
Show Source

400 Response

Invalid request
Body ()
Root Schema : ErrorResponse
Type: object
Show Source

401 Response

Authorization failure
Body ()
Root Schema : ErrorResponse
Type: object
Show Source

404 Response

Customer not found or no tips found for the specified locale
Body ()
Root Schema : ErrorResponse
Type: object
Show Source

500 Response

Internal error
Body ()
Root Schema : ErrorResponse
Type: object
Show Source
Back to Top