Query Transfer Status
Query the status of a player's transfer (in/out). Provided by the game platform; called by the merchant (operator).
Request URL
POST {API_URL_ROOT}/player/getTransferStatus
Request Parameters
Header
| Field | Required | Type | Description |
|---|---|---|---|
| sign | YES | string | Signature computed using the Signature Algorithm. |
| timestamp | YES | int | UTC timestamp in seconds since 1970-01-01. |
| Accept-Language | YES | string | Language codes, see Language List. |
| Content-Type | YES | string | "application/json; charset=utf-8" |
| Authorization | YES | string | JWT Bearer token, e.g. "Bearer TOKEN" |
Body
| Field | Required | Type | Description |
|---|---|---|---|
| recordId | YES | string | Transfer record ID (platform recordId returned from transfer API). |
Example
{
"recordId": "67d3f0c2b169ed0b2a46178b"
}
Response Parameters
| Field | Required | Type | Description |
|---|---|---|---|
| status | YES | int | Transfer status, see transferStatus table. |
Example
{
"isSuccess": true,
"code": 0,
"data": {
"status": 2
}
}
transferStatus Values
| Value | Description |
|---|---|
| 1 | Processing |
| 2 | Success |
| 3 | Failed |