Discussion

Rate Applied Actions are records used to keep track of all rates that were available to a user at the time that user completed a Move-In or Transfer to a new rental.

The Rate Applied Action describes the rate that the user ultimately assigned the rental in order for comparisons to be made between available rates and the final rate assigned to the rental.


GET /v1/:facility_id/rate_applied_actions
Fetch all rate applied actions completed on or between a start and end date

Params

Param name Description
start_date
optional

Start date of the range used to find Rate Applied Actions. Default: Today. Format: YYYY-MM-DD

Validations:

  • Must be a Date

end_date
optional

End date of the range used to find Rate Applied Actions. Default: Today. Format: YYYY-MM-DD

Validations:

  • Must be a Date

Examples

GET /v1/d97434d4-5665-43fa-83bb-576a3d4dd890/rate_applied_actions
200
{
  "rate_applied_actions": [
    {
      "rate_info": {
        "applied_rate": {
          "name": "standard_rate",
          "amount": 100.0
        },
        "standard_rate": 100.0
      },
      "source": "storEDGE",
      "completed_on": "2023-09-15",
      "completed_by": "Sherell Parisian",
      "employee_id": "2382432",
      "user_id": "6754d194-29c9-4580-97b6-4646ca97b5e5",
      "time_completed": "2023-09-15T04:36:05.699-10:00",
      "event": "MoveInUnitEvent",
      "old_ledger_id": "",
      "new_ledger_id": "6e631fb2-4afd-4aa5-b71c-d6c3297b0eb4",
      "unit_id": "3e885979-c7be-428a-b81a-6bd167e00d32",
      "lead_id": "35f18ae6-3d6d-4374-8a16-8b1b5b29ec67"
    },
    {
      "rate_info": {
        "applied_rate": {
          "name": "standard_rate",
          "amount": 100.0
        },
        "standard_rate": 100.0
      },
      "source": "storEDGE Rental Center",
      "completed_on": "2023-09-17",
      "completed_by": "",
      "employee_id": "",
      "user_id": "",
      "time_completed": "2023-09-15T04:36:05.699-10:00",
      "event": "MoveInUnitEvent",
      "old_ledger_id": "",
      "new_ledger_id": "c6066009-7bdf-4348-b592-39ed0e560b71",
      "unit_id": "5770b994-023a-424f-9ddd-9f5711eb28d4",
      "lead_id": "023730ad-e4fb-4641-b403-ceb9af00905c"
    }
  ],
  "meta": {
    "status_code": 200,
    "status_message": "OK",
    "status_cat": "https://http.cat/200",
    "request_method": "GET",
    "request_id": null,
    "parameters": {
      "end_date": "2023-09-18",
      "start_date": "2023-09-12",
      "facility_id": "d97434d4-5665-43fa-83bb-576a3d4dd890",
      "rate_applied_action": {}
    }
  }
}