GET api/v1/status/{statusId}/media
Get the list of media attached to the status post.
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| statusId | globally unique identifier | Required | 
Body Parameters
None.
Response Information
Resource Description
MediaItemDto| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | Id | globally unique identifier | None. | 
| UserId | Published by this user/member/device | globally unique identifier | None. | 
| ContentType | Content type (png, jpg, etc). | string | None. | 
| Caption | A caption to go with the item. This will be used as status post text if the CreateStatusPost option is set to true | string | None. | 
| Description | Option description to go with the photo | string | None. | 
| UniqueMediaName | A Unique name that is associated with media items. When media is requested using the UniqueMediaName it can show the latest or a stream of the media associated with the name. | string | None. | 
| Location | Location this photo was taken (or of) | LocationDto | None. | 
| Tags | Tags to associate with the photo | Collection of string | None. | 
| Links | List of the links (e.g. self) | Collection of LinkDto | None. | 
| Actions | List of actionable links (e.g. delete) | Collection of LinkDto | None. | 
| DateAdded | When the item was added. | date | None. | 
| LastUpdated | When the item was last updated | date | None. | 
| Private | If this media item is flagged as private to the individual account. | boolean | None. | 
Response Formats
application/json, text/json, application/senml+json
{
  "Id": "e02464c0-ba52-4bb0-95bc-80c2c79ee487",
  "UserId": "8186fbbd-b183-4b09-bd36-a7a32708753e",
  "ContentType": "sample string 3",
  "Caption": "sample string 4",
  "Description": "sample string 5",
  "UniqueMediaName": "sample string 6",
  "Location": {
    "Name": "sample string 1",
    "Latitude": 2.1,
    "Longitude": 3.1,
    "Elevation": 4.1,
    "WellKnownLocationId": "d20362cb-8c75-4042-bc92-a352abaa948a",
    "LastUpdated": "2025-10-30T13:46:09.9602054+00:00"
  },
  "Tags": [
    "sample string 1",
    "sample string 2"
  ],
  "Links": [
    {
      "Href": "sample string 1",
      "Rel": "sample string 2",
      "Action": "sample string 3"
    },
    {
      "Href": "sample string 1",
      "Rel": "sample string 2",
      "Action": "sample string 3"
    }
  ],
  "Actions": [
    {
      "Href": "sample string 1",
      "Rel": "sample string 2",
      "Action": "sample string 3"
    },
    {
      "Href": "sample string 1",
      "Rel": "sample string 2",
      "Action": "sample string 3"
    }
  ],
  "DateAdded": "2025-10-30T13:46:09.9602054+00:00",
  "LastUpdated": "2025-10-30T13:46:09.9602054+00:00",
  "Private": true
}
        application/xml, text/xml
<MediaItemDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnalysisUK.Tinamous.www.ApiControllers.Models.Media">
  <Actions xmlns:d2p1="http://schemas.datacontract.org/2004/07/AnalysisUK.Tinamous.www.ApiControllers.Models.Shared">
    <d2p1:LinkViewModel>
      <d2p1:Action>sample string 3</d2p1:Action>
      <d2p1:Href>sample string 1</d2p1:Href>
      <d2p1:Rel>sample string 2</d2p1:Rel>
    </d2p1:LinkViewModel>
    <d2p1:LinkViewModel>
      <d2p1:Action>sample string 3</d2p1:Action>
      <d2p1:Href>sample string 1</d2p1:Href>
      <d2p1:Rel>sample string 2</d2p1:Rel>
    </d2p1:LinkViewModel>
  </Actions>
  <Caption>sample string 4</Caption>
  <ContentType>sample string 3</ContentType>
  <DateAdded>2025-10-30T13:46:09.9602054+00:00</DateAdded>
  <Description>sample string 5</Description>
  <Id>e02464c0-ba52-4bb0-95bc-80c2c79ee487</Id>
  <LastUpdated>2025-10-30T13:46:09.9602054+00:00</LastUpdated>
  <Links xmlns:d2p1="http://schemas.datacontract.org/2004/07/AnalysisUK.Tinamous.www.ApiControllers.Models.Shared">
    <d2p1:LinkViewModel>
      <d2p1:Action>sample string 3</d2p1:Action>
      <d2p1:Href>sample string 1</d2p1:Href>
      <d2p1:Rel>sample string 2</d2p1:Rel>
    </d2p1:LinkViewModel>
    <d2p1:LinkViewModel>
      <d2p1:Action>sample string 3</d2p1:Action>
      <d2p1:Href>sample string 1</d2p1:Href>
      <d2p1:Rel>sample string 2</d2p1:Rel>
    </d2p1:LinkViewModel>
  </Links>
  <Location xmlns:d2p1="http://schemas.datacontract.org/2004/07/AnalysisUK.Tinamous.www.ApiControllers.Models.Shared">
    <d2p1:Elevation>4.1</d2p1:Elevation>
    <d2p1:LastUpdated>2025-10-30T13:46:09.9602054+00:00</d2p1:LastUpdated>
    <d2p1:Latitude>2.1</d2p1:Latitude>
    <d2p1:Longitude>3.1</d2p1:Longitude>
    <d2p1:Name>sample string 1</d2p1:Name>
    <d2p1:WellKnownLocationId>d20362cb-8c75-4042-bc92-a352abaa948a</d2p1:WellKnownLocationId>
  </Location>
  <Private>true</Private>
  <Tags xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Tags>
  <UniqueMediaName>sample string 6</UniqueMediaName>
  <UserId>8186fbbd-b183-4b09-bd36-a7a32708753e</UserId>
</MediaItemDto>