POST case/{id}/meta
Set mediadata for a case
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Case ID |
globally unique identifier |
Required |
Body Parameters
Metadata
CaseMetaData| Name | Description | Type | Additional information |
|---|---|---|---|
| Mobile |
Mobile phone model |
string |
None. |
| MobileOS |
Operating system |
string |
None. |
| MobileOSVersion |
Operating system version |
string |
None. |
| ProcessShootCount |
Number of photos taken |
integer |
None. |
| ProcessStart |
Date and time process was started |
date |
None. |
| AppInstalled |
Date and time app was installed |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mobile": "sample string 1",
"MobileOS": "sample string 2",
"MobileOSVersion": "sample string 3",
"ProcessShootCount": 4,
"ProcessStart": "2025-12-06T05:23:49.2621354+01:00",
"AppInstalled": "2025-12-06T05:23:49.2621354+01:00"
}
application/xml, text/xml
Sample:
<CaseMetaData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Controllers"> <AppInstalled>2025-12-06T05:23:49.2621354+01:00</AppInstalled> <Mobile>sample string 1</Mobile> <MobileOS>sample string 2</MobileOS> <MobileOSVersion>sample string 3</MobileOSVersion> <ProcessShootCount>4</ProcessShootCount> <ProcessStart>2025-12-06T05:23:49.2621354+01:00</ProcessStart> </CaseMetaData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.