Pricing & Extensions

Get Upgrade Price

Get the cost to upgrade a locker's capacity.

Endpoint: /api/locker/upgrade-price Method: GET Description: Returns the cost of upgrading the locker capacity.

Request Parameters:

Parameter
Type
Description

current_size

string

Current size of the locker (small, medium, large)

Response:

{
    "upgrade_cost": 15.00
}

Note: If a customer with a Large Locker reaches capacity, excess charges will apply.

Get Excess Package Price

Get the cost for packages exceeding locker capacity.

Endpoint: /api/excess-package-price Method: GET Description: Returns the price for each additional package exceeding the locker capacity.

Response:

{
    "excess_package_cost": 5.00
}

Get Extension Price

Get the cost to extend the rental period.

Endpoint: /api/locker/extend-duration-price Method: GET Description: Returns the cost of extending the usage time of a locker.

Request Parameters:

Parameter
Type
Description

locker_size

string

Size of the locker (small, medium, large)

days

integer

Number of days to extend

Response:

{
    "extension_cost": 10.00
}

Last updated