GET api/me/userproperties/{userPropertyId}/cases/{caseId}/logs

This method should be used to retrieve log statements for a specific case by id

Requires Authorization!

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userPropertyId

User property id

integer

Required

caseId

Id of the target case

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of

Collection of UserPropertyCaseLogResponseModel
NameDescriptionTypeAdditional information
Id

integer

None.

Agency

string

None.

UserFullName

string

None.

Statement

string

None.

AddedDate

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "agency": "sample string 2",
    "userFullName": "sample string 3",
    "statement": "sample string 4",
    "addedDate": "sample string 5"
  },
  {
    "id": 1,
    "agency": "sample string 2",
    "userFullName": "sample string 3",
    "statement": "sample string 4",
    "addedDate": "sample string 5"
  }
]

text/html

Sample:
[{"id":1,"agency":"sample string 2","userFullName":"sample string 3","statement":"sample string 4","addedDate":"sample string 5"},{"id":1,"agency":"sample string 2","userFullName":"sample string 3","statement":"sample string 4","addedDate":"sample string 5"}]

application/xml, text/xml

Sample:
<ArrayOfUserPropertyCaseLogResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels.CaseBinding">
  <UserPropertyCaseLogResponseModel>
    <AddedDate>sample string 5</AddedDate>
    <Agency>sample string 2</Agency>
    <Id>1</Id>
    <Statement>sample string 4</Statement>
    <UserFullName>sample string 3</UserFullName>
  </UserPropertyCaseLogResponseModel>
  <UserPropertyCaseLogResponseModel>
    <AddedDate>sample string 5</AddedDate>
    <Agency>sample string 2</Agency>
    <Id>1</Id>
    <Statement>sample string 4</Statement>
    <UserFullName>sample string 3</UserFullName>
  </UserPropertyCaseLogResponseModel>
</ArrayOfUserPropertyCaseLogResponseModel>