Resumption of subscription with binding payment system

Url: https://api.playkey.net/rest/PlaykeyAPI.svc/user/subscriptions/resumeandbind

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
code_payment_system - Payment system UID
return_url - Link to the payment form
currency_code - Code of payment service provider
card_name - Link to the payment form
card_cryptogram_packet - Link to the payment form
product_shipment_type_code - Product shipment type code

The following is an example request Json body:

{
    "lang": "lang",
    "api_version": 1195489430,
    "ga_clientId": "gaclientid",
    "token": "token",
    "code_payment_system": "codepaymentsystem",
    "return_url": "returnurl",
    "currency_code": "currencycode",
    "card_name": "cardname",
    "card_cryptogram_packet": "cardcryptogrampacket",
    "product_shipment_type_code": "productshipmenttypecode"
}

Description of how to response:

error - Error information
    code - Error code. Error 0 - no error
    message - Error message. Empty if none
form_url - Link to the payment form

The following is an example response Json body:

{
    "error": {
        "code": 0,
        "message": "string"
    },
    "form_url": "string"
}

The following is an example response Xml body:

<result xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <error>
    <code>0</code>
    <message>string</message>
  </error>
  <form_url>string</form_url>
</result>