Selling a skin
Firstly you must install Chrome extension or WhiteMarket mobile app.
You can sell your skins via GraphQL mutation market_new
Selling options
deliveryType
Delivery type of skin.
auto
- will be used in the future. Now throw error;semi
- default value. We send trade offer, and you need to approve in Steam Mobile app;manual
- You send trade offer in Steam manually.
lifetime
You can choose lifetime of your skin in seconds. We will remove the product after its end of life.
Selling flow
Semi delivery type
- Place skin via market_new with
deliveryType
=SEMI
; - Check incoming deals via deal_seller_list;
- Wait deal with
status
=NEED_CONFIRMATION
; - Approve trade offer in Steam Mobile App;
- Wait deal finish (success or cancel).
Manual delivery type
- Place skin via market_new with
deliveryType
=MANUAL
; - Check incoming deals via deal_seller_list;
- Wait deal with
status
=SELLER_SENDING_STEAM_OFFER
; - You need to send your inventory item (field
assetId
) to receiver trade url (fieldreceiverTradeUrl
); - After sending pass Trade Offer ID to deal_steam_offer_sent;
- Wait deal finish (success or cancel).