GET api/EventVisaInformation/{id}
Get EventVisaInformation by matching the provided id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ListEventVisaInformationName | Description | Type | Additional information |
---|---|---|---|
EventVisaInformationId | integer |
None. |
|
EventId | integer |
None. |
|
VisaType | string |
None. |
|
Description | string |
None. |
|
IsActive | boolean |
None. |
|
IsDeleted | boolean |
None. |
|
EventName | string |
None. |
|
EventCode | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "EventVisaInformationId": 1, "EventId": 1, "VisaType": "sample string 2", "Description": "sample string 3", "IsActive": true, "IsDeleted": true, "EventName": "sample string 4", "EventCode": "sample string 5" }
application/xml, text/xml
Sample:
<ListEventVisaInformation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers"> <Description>sample string 3</Description> <EventCode>sample string 5</EventCode> <EventId>1</EventId> <EventName>sample string 4</EventName> <EventVisaInformationId>1</EventVisaInformationId> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <VisaType>sample string 2</VisaType> </ListEventVisaInformation>