GET api/ids/accountHistory?username={username}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
username

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AccountHistoryDTO
NameDescriptionTypeAdditional information
user_guid

globally unique identifier

None.

application_name

string

None.

message

string

None.

date

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "user_guid": "1bcc7c6b-adfc-45a6-9610-67bb370d756c",
    "application_name": "sample string 2",
    "message": "sample string 3",
    "date": "sample string 4"
  },
  {
    "user_guid": "1bcc7c6b-adfc-45a6-9610-67bb370d756c",
    "application_name": "sample string 2",
    "message": "sample string 3",
    "date": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAccountHistoryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PartnersDTO.IDS">
  <AccountHistoryDTO>
    <application_name>sample string 2</application_name>
    <date>sample string 4</date>
    <message>sample string 3</message>
    <user_guid>1bcc7c6b-adfc-45a6-9610-67bb370d756c</user_guid>
  </AccountHistoryDTO>
  <AccountHistoryDTO>
    <application_name>sample string 2</application_name>
    <date>sample string 4</date>
    <message>sample string 3</message>
    <user_guid>1bcc7c6b-adfc-45a6-9610-67bb370d756c</user_guid>
  </AccountHistoryDTO>
</ArrayOfAccountHistoryDTO>