AuthSessionDetails Data Type

Details of an authenticated session returned after a successful login. Contains the session token and user identity information.

Available Since
1.3.0
Properties
Name Type Description
userId number The identifier for the logged User.
accountId number The identifier for the authorized Account.
sessionId string The authentication token for accessing private resources using the x-auth-token header.
customerPermanentStorageId string The customer key registered with current session. It is the unique identificator of the Customer Storage which is used in several cases, for example identification of own User Motive Library.
Used in
AuthSessionDetails (JSON)
{
  "authSessionDetails" : {
    "userId" : 12345,
    "accountId" : 12345,
    "sessionId" : "...",
    "customerPermanentStorageId" : "..."
  }
}
AuthSessionDetails Data Type

Details of an authenticated session returned after a successful login. Contains the session token and user identity information.

Available Since
1.3.0
Properties
Name Type Description
accountId int The identifier for the authorized Account.
customerPermanentStorageId string The customer key registered with current session. It is the unique identificator of the Customer Storage which is used in several cases, for example identification of own User Motive Library.
sessionId string The authentication token for accessing private resources using the x-auth-token header.
userId int The identifier for the logged User.
Used in
AuthSessionDetails (XML)
<authSessionDetails>
  <userId>...</userId>
  <accountId>...</accountId>
  <sessionId>...</sessionId>
  <customerPermanentStorageId>...</customerPermanentStorageId>
</authSessionDetails>