POST api/Generic?port={port}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| port | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Root| Name | Description | Type | Additional information |
|---|---|---|---|
| series | Collection of Series |
None. |
Response Formats
application/json, text/json
Sample:
{
"series": [
{
"series_id": "sample string 1",
"name": "sample string 2",
"updated": "2025-12-05T21:54:43.7496007-08:00",
"data": [
[
{},
{}
],
[
{},
{}
]
]
},
{
"series_id": "sample string 1",
"name": "sample string 2",
"updated": "2025-12-05T21:54:43.7496007-08:00",
"data": [
[
{},
{}
],
[
{},
{}
]
]
}
]
}
application/xml, text/xml
Sample:
<GenericController.Root xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Generic.Controllers">
<Series>
<GenericController.Series>
<Data xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:ArrayOfanyType>
<d4p1:anyType />
<d4p1:anyType />
</d4p1:ArrayOfanyType>
<d4p1:ArrayOfanyType>
<d4p1:anyType />
<d4p1:anyType />
</d4p1:ArrayOfanyType>
</Data>
<Name>sample string 2</Name>
<SeriesId>sample string 1</SeriesId>
<Updated>2025-12-05T21:54:43.7496007-08:00</Updated>
</GenericController.Series>
<GenericController.Series>
<Data xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:ArrayOfanyType>
<d4p1:anyType />
<d4p1:anyType />
</d4p1:ArrayOfanyType>
<d4p1:ArrayOfanyType>
<d4p1:anyType />
<d4p1:anyType />
</d4p1:ArrayOfanyType>
</Data>
<Name>sample string 2</Name>
<SeriesId>sample string 1</SeriesId>
<Updated>2025-12-05T21:54:43.7496007-08:00</Updated>
</GenericController.Series>
</Series>
</GenericController.Root>