PUT api/BibSeries/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
BibSeries| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FirstNumber | integer |
Required |
|
| LastNumber | integer |
None. |
|
| EventId | integer |
None. |
|
| EventClassId | integer |
None. |
|
| Event | Event |
None. |
|
| EventClass | EventClass |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"FirstNumber": 2,
"LastNumber": 3,
"EventId": 4,
"EventClassId": 5,
"Event": {
"Id": 1,
"Name": "sample string 2",
"EventDate": "2026-02-27T19:29:13.1696259+01:00"
},
"EventClass": {
"Id": 1,
"Name": "sample string 2",
"Distance": 3.1,
"MaxAge": 4
}
}
application/xml, text/xml
Sample:
<BibSeries xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TD.Vararuset.API.Models">
<Event>
<EventDate>2026-02-27T19:29:13.1696259+01:00</EventDate>
<Id>1</Id>
<Name>sample string 2</Name>
</Event>
<EventClass>
<Distance>3.1</Distance>
<Id>1</Id>
<MaxAge>4</MaxAge>
<Name>sample string 2</Name>
</EventClass>
<EventClassId>5</EventClassId>
<EventId>4</EventId>
<FirstNumber>2</FirstNumber>
<Id>1</Id>
<LastNumber>3</LastNumber>
</BibSeries>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.