GET Report
Get a list of all birads
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
a list of all birads
Collection of Birad| Name | Description | Type | Additional information | 
|---|---|---|---|
| Uuid | Gets or sets the unique identifier | string | None. | 
| Label | Gets or sets the label | string | None. | 
| ReportContent | Gets or sets the content of Report | string | None. | 
| Code | Gets or sets the code | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "Uuid": "sample string 1",
    "Label": "sample string 2",
    "ReportContent": "sample string 3",
    "Code": "sample string 4"
  },
  {
    "Uuid": "sample string 1",
    "Label": "sample string 2",
    "ReportContent": "sample string 3",
    "Code": "sample string 4"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfBirad xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Reports">
  <Birad>
    <Code>sample string 4</Code>
    <Label>sample string 2</Label>
    <ReportContent>sample string 3</ReportContent>
    <Uuid>sample string 1</Uuid>
  </Birad>
  <Birad>
    <Code>sample string 4</Code>
    <Label>sample string 2</Label>
    <ReportContent>sample string 3</ReportContent>
    <Uuid>sample string 1</Uuid>
  </Birad>
</ArrayOfBirad>