Basic Information

Detailed Information

Report Data

The LoginToken Datatype

The following datatype will be JSONified and returned when /LoginToken is successfully called.

public class LoginToken
{
publicUInt64AccountId; // The AccountId of the Account for this token.
publicStringToken; // The temporary token.
publicDateTimeTokenExpiration; // The server DateTime at which the Token will cease to function.
publicStringLink; // A link to the webapp which will automatically log into the requested Account. This link will function for at most two minutes.
}

The LoginToken Method

Please note that AccountId is not optional for this call. You must specify your AccountId, or the AccountId of the child account you wish to generate a token for.

  • GET v1/LoginToken/{id}

    Summary: Creates a new login token for the specified account, and returns it.

    Returns: The newly-created login token. It will persist for no more than two minutes.

    Parameters:

    • id: The AccountId of the Account to create the token for. (FromUri)