GET api/EventTournamentAccredetitation/{id}
Get EventTournamentAccredetitation by matching the provided id
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
List_EventTournamentAccreditation| Name | Description | Type | Additional 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-10-31T09:48:42.0440487+00:00",
  "EndDateTime": "2025-10-31T09:48:42.0440487+00:00",
  "Location": "sample string 3",
  "IsActive": true,
  "IsDeleted": true,
  "CreatedDateTime": "2025-10-31T09:48:42.0440487+00:00",
  "LastUpdatedDateTime": "2025-10-31T09:48:42.0440487+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-10-31T09:48:42.0440487+00:00</CreatedDateTime> <EndDateTime>2025-10-31T09:48:42.0440487+00:00</EndDateTime> <EventId>2</EventId> <EventTournamentAccredetitationId>1</EventTournamentAccredetitationId> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <LastUpdatedDateTime>2025-10-31T09:48:42.0440487+00:00</LastUpdatedDateTime> <Location>sample string 3</Location> <StartDateTime>2025-10-31T09:48:42.0440487+00:00</StartDateTime> </List_EventTournamentAccreditation>