GET api/EventTournamentAccredetitation/{id}

Get EventTournamentAccredetitation by matching the provided id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

List_EventTournamentAccreditation
NameDescriptionTypeAdditional information
EventTournamentAccredetitationId

integer

None.

EventId

integer

None.

StartDateTime

date

None.

EndDateTime

date

None.

Location

string

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedDateTime

date

None.

LastUpdatedDateTime

date

None.

Response Formats

application/json, text/json

Sample:
{
  "EventTournamentAccredetitationId": 1,
  "EventId": 2,
  "StartDateTime": "2025-07-18T16:28:26.582493+00:00",
  "EndDateTime": "2025-07-18T16:28:26.582493+00:00",
  "Location": "sample string 3",
  "IsActive": true,
  "IsDeleted": true,
  "CreatedDateTime": "2025-07-18T16:28:26.582493+00:00",
  "LastUpdatedDateTime": "2025-07-18T16:28:26.582493+00:00"
}

application/xml, text/xml

Sample:
<List_EventTournamentAccreditation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers">
  <CreatedDateTime>2025-07-18T16:28:26.582493+00:00</CreatedDateTime>
  <EndDateTime>2025-07-18T16:28:26.582493+00:00</EndDateTime>
  <EventId>2</EventId>
  <EventTournamentAccredetitationId>1</EventTournamentAccredetitationId>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <LastUpdatedDateTime>2025-07-18T16:28:26.582493+00:00</LastUpdatedDateTime>
  <Location>sample string 3</Location>
  <StartDateTime>2025-07-18T16:28:26.582493+00:00</StartDateTime>
</List_EventTournamentAccreditation>