C5GAME OPEN
  1. Account
C5GAME OPEN
  • Access Guide
  • Account
    • Account Balance
      GET
    • User Reala Steam List
      GET
  • Sell
    • Sell List
      GET
    • Modify Product Price
      POST
    • Off Sell
      POST
    • Sell Steam Items
      POST
    • Price Query
      POST
  • Order
    • Buyer Order Detail
      GET
    • Buyer Orders
      POST
    • Seller Orders
      POST
  • Buy
    • Quick Buy
      POST
    • Normal Buy
      POST
  • Market
    • Query Item Sell
      POST
  • inventory
  1. Account

User Reala Steam List

GET
/merchant/account/v1/steamInfo
Query binding steam accounts

Request

Authorization
Add parameter in query
app-key
Example:
app-key: ********************
Query Params
app-key
string 
optional
Default:
{{app-key}}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://openapi.c5game.com//merchant/account/v1/steamInfo?app-key'

Responses

🟢200成功
application/json
Body
com.xingchao.platform.inf.web.response.WebApiRes<com.c5game.open.platform.api.vo.UserSteamVO>
success
boolean  | null 
optional
Is request successful
data
object (UserSteamVO) 
optional
Business data
uid
integer  | null 
optional
user id
avatar
string  | null 
optional
user avatar
nickname
string  | null 
optional
user nickname
balance
number  | null 
optional
user balance account
steamList
array[object (SteamInfoVO) {2}]  | null 
optional
steam info list
errorCode
integer  | null 
optional
Error code
errorMsg
string  | null 
optional
Error message
errorData
object (Object) 
optional
Error data,when errorCode is not equals to 0,maybe this property will have a value
errorCodeStr
string  | null 
optional
like the errorCode,but this property is string
Example
{
    "success": true,
    "data": {
        "uid": "123456",
        "avatar": "https://i.c5game.com/image/u-887621619f27068ca3e.jpg",
        "nickname": "这是昵称",
        "balance": 1090.3,
        "steamList": [
            {
                "steamId": "76561198152000000",
                "avatar": "头像地址"
            },
            {
                "steamId": "76561198168000000",
                "avatar": "头像地址"
            }
        ]
    },
    "errorCode": 0,
    "errorMsg": null,
    "errorData": null,
    "errorCodeStr": null
}
Modified at 2023-09-29 06:00:45
Previous
Account Balance
Next
Sell List
Built with