Controller: Account Management: GetTrials
GetTrials
Gets a list off all trial accounts.
This api call supports paging and filtering
| Input Parameter | Type | Description | 
|---|---|---|
| Output Parameter | Type | Description | 
| -- | --- | ---- | 
| Success | Boolean | True on success, False on failure | 
*: Required
**: Use ConfirmationID or Email param
Accepts an invitation by its confirmation id.
CURL EXAMPLE
curl -v 'https://secure.nomadesk.com/ctrller/api.php?Task=GetTrials&Token=fb58a924-86a2-c7b6-e517-89da522d6464'
RESPONSE
<Response>
    <Status>1</Status>
    <Message>Success</Message>
    <TotalCount>1</TotalCount>
    <Accounts>
        <Account>
            <Name>Firstname Lastname</Name>
            <Email>account@example.com</Email>
            <TrialStart>1502316000</TrialStart>
            <TrialEnd></TrialEnd>
            <TrialExpiry>1503525600</TrialExpiry>
            <Created>1502316000</Created>
        </Account>
    </Accounts>
</Response>