Withdrawal currency from balance

Url: https://api.playkey.net/rest/PlaykeyAPI.svc/user/ps/withdraw

HTTP Method: POST

The following is an description request Json body:

lang - Display language
api_version - API version (default equal 1)
ga_clientId - Google Analytics ID
token - Authentication token
value - Withdrawal value
currency_code - Currency code
output_address - External output address

The following is an example request Json body:

{
    "lang": "lang",
    "api_version": 2073386604,
    "ga_clientId": "gaclientid",
    "token": "token",
    "value": 1107294182,
    "currency_code": "currencycode",
    "output_address": "outputaddress"
}

Description of how to response:

error - Error information
    code - Error code. Error 0 - no error
    message - Error message. Empty if none
operation_id - Balance operation id

The following is an example response Json body:

{
    "error": {
        "code": 0,
        "message": "string"
    },
    "operation_id": 1107294182
}

The following is an example response Xml body:

<WithdrawResponse xmlns="http://schemas.datacontract.org/2004/07/XMLGen.Responses" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <error xmlns="">
    <code>0</code>
    <message>string</message>
  </error>
  <operation_id>1107294182</operation_id>
</WithdrawResponse>