GET api/2.0/portal/payment/currencies This function requires authentication

Description

Returns the available portal currencies.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/portal/payment/currencies
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of available portal currencies

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "ISOCountryCode": "some text",
      "ISOCurrencySymbol": "some text",
      "CurrencyNativeName": "some text"
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <ISOCountryCode>some text</ISOCountryCode>
    <ISOCurrencySymbol>some text</ISOCurrencySymbol>
    <CurrencyNativeName>some text</CurrencyNativeName>
  </response>
</result>