POST api/Events?eventId={eventId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eventId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EventRound
NameDescriptionTypeAdditional information
Event_Round_No

integer

None.

Event_Round_Seq

integer

None.

Round_Type_Desc

string

None.

Event_Day_dt

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Event_Round_No": 1,
    "Event_Round_Seq": 2,
    "Round_Type_Desc": "sample string 3",
    "Event_Day_dt": "2025-03-04T11:05:20.9458401-08:00"
  },
  {
    "Event_Round_No": 1,
    "Event_Round_Seq": 2,
    "Round_Type_Desc": "sample string 3",
    "Event_Day_dt": "2025-03-04T11:05:20.9458401-08:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventRound xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PBR_API.Models">
  <EventRound>
    <Event_Day_dt>2025-03-04T11:05:20.9458401-08:00</Event_Day_dt>
    <Event_Round_No>1</Event_Round_No>
    <Event_Round_Seq>2</Event_Round_Seq>
    <Round_Type_Desc>sample string 3</Round_Type_Desc>
  </EventRound>
  <EventRound>
    <Event_Day_dt>2025-03-04T11:05:20.9458401-08:00</Event_Day_dt>
    <Event_Round_No>1</Event_Round_No>
    <Event_Round_Seq>2</Event_Round_Seq>
    <Round_Type_Desc>sample string 3</Round_Type_Desc>
  </EventRound>
</ArrayOfEventRound>