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

Method accept_sale

csfloat_client.py:471–480  ·  view source on GitHub ↗
(self, *, trade_ids: list[str])

Source from the content-addressed store, hash-verified

469 return response
470
471 async def accept_sale(self, *, trade_ids: list[str]):
472 parameters = "trades/bulk/accept"
473 method = "POST"
474
475 json_data = {
476 "trade_ids": trade_ids
477 }
478
479 response = await self._request(method=method, parameters=parameters, json_data=json_data)
480 return response
481
482 async def update_listing_price(self, *, listing_id: int, price: int):
483 parameters = f"/listings/{listing_id}"

Callers

nothing calls this directly

Calls 1

_requestMethod · 0.95

Tested by

no test coverage detected