GET api/Rates/GetSeasonsByPM?PMID={PMID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PMID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Season| Name | Description | Type | Additional information |
|---|---|---|---|
| SeasonID | integer |
None. |
|
| Name | string |
None. |
|
| From | date |
None. |
|
| To | date |
None. |
|
| Comment | string |
None. |
|
| PMID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SeasonID": 1,
"Name": "sample string 2",
"From": "2025-12-10T06:02:22.436098+00:00",
"To": "2025-12-10T06:02:22.436098+00:00",
"Comment": "sample string 5",
"PMID": 6
},
{
"SeasonID": 1,
"Name": "sample string 2",
"From": "2025-12-10T06:02:22.436098+00:00",
"To": "2025-12-10T06:02:22.436098+00:00",
"Comment": "sample string 5",
"PMID": 6
}
]
application/xml, text/xml
Sample:
<ArrayOfSeason xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Season>
<SeasonID>1</SeasonID>
<Name>sample string 2</Name>
<From>2025-12-10T06:02:22.436098+00:00</From>
<To>2025-12-10T06:02:22.436098+00:00</To>
<Comment>sample string 5</Comment>
<PMID>6</PMID>
</Season>
<Season>
<SeasonID>1</SeasonID>
<Name>sample string 2</Name>
<From>2025-12-10T06:02:22.436098+00:00</From>
<To>2025-12-10T06:02:22.436098+00:00</To>
<Comment>sample string 5</Comment>
<PMID>6</PMID>
</Season>
</ArrayOfSeason>