GET api/InvestorRelation/PersonalInvestorMessages?investorId={investorId}

Gets personal investor messages. Stub response.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
investorId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Personal_Investor_Messages
NameDescriptionTypeAdditional information
InvestorID

integer

None.

ThreadID

integer

None.

ThreadSubject

string

None.

ThreadMessageContext

string

None.

MessageOwner

string

None.

IsReaded

boolean

None.

Timestamp

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "InvestorID": 1,
    "ThreadID": 2,
    "ThreadSubject": "sample string 3",
    "ThreadMessageContext": "sample string 4",
    "MessageOwner": "sample string 5",
    "IsReaded": true,
    "Timestamp": "2026-04-19T08:21:06.7280365-05:00"
  },
  {
    "InvestorID": 1,
    "ThreadID": 2,
    "ThreadSubject": "sample string 3",
    "ThreadMessageContext": "sample string 4",
    "MessageOwner": "sample string 5",
    "IsReaded": true,
    "Timestamp": "2026-04-19T08:21:06.7280365-05:00"
  }
]