DELETE api/V2/EventList/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

EventList
NameDescriptionTypeAdditional information
EventId

integer

None.

TeamId

globally unique identifier

None.

ClubId

globally unique identifier

None.

EventName

string

None.

InUse

boolean

None.

Color

string

None.

Comments

string

None.

IsClub

boolean

None.

VisibleForTeams

boolean

None.

EventColor

string

None.

IsTournament

boolean

None.

IsMatch

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "eventId": 1,
  "teamId": "799e39cb-c701-4670-a0d5-f9a968e4fe70",
  "clubId": "538d4bd7-1f9a-486b-a341-cae942575852",
  "eventName": "sample string 4",
  "inUse": true,
  "color": "sample string 6",
  "comments": "sample string 7",
  "isClub": true,
  "visibleForTeams": true,
  "eventColor": "sample string 10",
  "isTournament": true,
  "isMatch": true
}

application/xml, text/xml

Sample:
<EventList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/oiback.Classes.V2">
  <ClubId>538d4bd7-1f9a-486b-a341-cae942575852</ClubId>
  <Color>sample string 6</Color>
  <Comments>sample string 7</Comments>
  <EventColor>sample string 10</EventColor>
  <EventId>1</EventId>
  <EventName>sample string 4</EventName>
  <InUse>true</InUse>
  <IsClub>true</IsClub>
  <IsMatch>true</IsMatch>
  <IsTournament>true</IsTournament>
  <TeamId>799e39cb-c701-4670-a0d5-f9a968e4fe70</TeamId>
  <VisibleForTeams>true</VisibleForTeams>
</EventList>