GET api/VisaType/{id}

Get Visa type by matching the provided id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

VisaType
NameDescriptionTypeAdditional information
VisaTypeId

integer

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedDateTime

date

None.

LastUpdatedDateTime

date

None.

CreatedBy

integer

None.

LastModifiedBy

integer

None.

VisaTypeName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "VisaTypeId": 1,
  "IsActive": true,
  "IsDeleted": true,
  "CreatedDateTime": "2025-07-18T16:01:27.7460324+00:00",
  "LastUpdatedDateTime": "2025-07-18T16:01:27.7460324+00:00",
  "CreatedBy": 1,
  "LastModifiedBy": 1,
  "VisaTypeName": "sample string 2"
}

application/xml, text/xml

Sample:
<VisaType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1">
  <CreatedBy>1</CreatedBy>
  <CreatedDateTime>2025-07-18T16:01:27.7460324+00:00</CreatedDateTime>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <LastModifiedBy>1</LastModifiedBy>
  <LastUpdatedDateTime>2025-07-18T16:01:27.7460324+00:00</LastUpdatedDateTime>
  <VisaTypeId>1</VisaTypeId>
  <VisaTypeName>sample string 2</VisaTypeName>
</VisaType>