GET api/Annotation?experienceId={experienceId}
Retrieve array of annotations for a specific experience record
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| experienceId |
altai_experience ID |
System.Guid |
Required |
Body Parameters
None.
Response Information
Resource Description
Array of annotations
System.Collections.Generic.IEnumerable`1[Altai.Web.Services.Models.Annotation]| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | System.Guid |
None. |
|
| FileName | System.String |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "d9b4cf8d-d1d4-46a1-b1ba-5bc521223450",
"FileName": "sample string 2"
},
{
"Id": "d9b4cf8d-d1d4-46a1-b1ba-5bc521223450",
"FileName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfAnnotation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Altai.Web.Services.Models">
<Annotation>
<FileName>sample string 2</FileName>
<Id>d9b4cf8d-d1d4-46a1-b1ba-5bc521223450</Id>
</Annotation>
<Annotation>
<FileName>sample string 2</FileName>
<Id>d9b4cf8d-d1d4-46a1-b1ba-5bc521223450</Id>
</Annotation>
</ArrayOfAnnotation>