GET api/ParalympicClasses/{id}

Get ParalympicClass by provided ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ParalympicClass
NameDescriptionTypeAdditional information
ParalympicClassId

integer

None.

ParalympicClassName

string

None.

IsActive

boolean

None.

CreatedDateTime

date

None.

LastUpdatedDateTime

date

None.

CreatedBy

integer

None.

LastModifiedBy

integer

None.

IsDeleted

boolean

None.

ImpairmentGroup

string

None.

Description

string

None.

ClassId

string

None.

SortOrder

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ParalympicClassId": 1,
  "ParalympicClassName": "sample string 2",
  "IsActive": true,
  "CreatedDateTime": "2025-07-18T15:38:14.6963797+00:00",
  "LastUpdatedDateTime": "2025-07-18T15:38:14.6963797+00:00",
  "CreatedBy": 1,
  "LastModifiedBy": 1,
  "IsDeleted": true,
  "ImpairmentGroup": "sample string 3",
  "Description": "sample string 4",
  "ClassId": "sample string 5",
  "SortOrder": 1
}

application/xml, text/xml

Sample:
<ParalympicClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1">
  <ClassId>sample string 5</ClassId>
  <CreatedBy>1</CreatedBy>
  <CreatedDateTime>2025-07-18T15:38:14.6963797+00:00</CreatedDateTime>
  <Description>sample string 4</Description>
  <ImpairmentGroup>sample string 3</ImpairmentGroup>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <LastModifiedBy>1</LastModifiedBy>
  <LastUpdatedDateTime>2025-07-18T15:38:14.6963797+00:00</LastUpdatedDateTime>
  <ParalympicClassId>1</ParalympicClassId>
  <ParalympicClassName>sample string 2</ParalympicClassName>
  <SortOrder>1</SortOrder>
</ParalympicClass>