MCPcopy Create free account
hub / github.com/Rushifakami/csfloat_api / update_listing_price

Method update_listing_price

csfloat_client.py:482–490  ·  view source on GitHub ↗
(self, *, listing_id: int, price: int)

Source from the content-addressed store, hash-verified

480 return response
481
482 async def update_listing_price(self, *, listing_id: int, price: int):
483 parameters = f"/listings/{listing_id}"
484 method = "PATCH"
485
486 json_data = {
487 "price": price
488 }
489 response = await self._request(method=method, parameters=parameters, json_data=json_data)
490 return response

Callers

nothing calls this directly

Calls 1

_requestMethod · 0.95

Tested by

no test coverage detected