Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
maxLevel2

GetCredits method

Method parameters 

Returns the number of credits left in the administration console

  • string GetCredits(string accessKey)
  • accessKey: access key obtained using the Login method

Sample GetCredits response

Code Block
languagehtml/xml
linenumberstrue
<GetCreditsResult>
<errorCode>0</errorCode>
<errorDescription></errorDescription>
<credits>12500</credits> 
</GetCreditsResult> 

GetCreditsList

Method parameters 

Returns the number of credits left in the administration console, for a specific list or for all lists

...


If error code=0, returned message will contain all the requested lists with the corresponding credits left
If error code<>0, returned message will contain a description of the error and the detail of the lists will be empty

Sample GetCreditsList response

Code Block
languagehtml/xml
linenumberstrue
<GetCreditsListsResult>
       <ErrorCode>0</ErrorCode>
       <ErrorDescription></ErrorDescription>
       <Lists>
             <List>
                    <ID>1</ID>
                    <Name>List N. 1</Name>
                    <Credit>0</Credit>
             </List>
             <List>
                    <ID>3</ID>
                    <Name>List N. 2</Name>
                    <Credit>0</Credit>
             </List>
             <List>
                    <ID>3</ID>
                    <Name>List N. 3</Name>
                    <Credit>4327</Credit>
             </List>
             <List>
                    <ID>4</ID>
                    <Name>List N. 4</Name>
                    <Credit>7095.677</Credit>
             </List>
</Lists>
</GetCreditsListsResult>