POST api/EventVisaInformation/CRUD

Add/Update/Delete EventVisaInformation

Request Information

URI Parameters

None.

Body Parameters

String Array of EventVisaInformation Names And Information(Mandatory)

Collection of EventVisaInformationInfo
NameDescriptionTypeAdditional information
EventVisaInformationId

integer

None.

EventId

integer

None.

VisaTypeId

integer

None.

VisaDescription

string

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

Deleted

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "EventVisaInformationId": 1,
    "EventId": 1,
    "VisaTypeId": 2,
    "VisaDescription": "sample string 3",
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1
  },
  {
    "EventVisaInformationId": 1,
    "EventId": 1,
    "VisaTypeId": 2,
    "VisaDescription": "sample string 3",
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventVisaInformationInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <EventVisaInformationInfo>
    <Deleted>1</Deleted>
    <EventId>1</EventId>
    <EventVisaInformationId>1</EventVisaInformationId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <VisaDescription>sample string 3</VisaDescription>
    <VisaTypeId>2</VisaTypeId>
  </EventVisaInformationInfo>
  <EventVisaInformationInfo>
    <Deleted>1</Deleted>
    <EventId>1</EventId>
    <EventVisaInformationId>1</EventVisaInformationId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <VisaDescription>sample string 3</VisaDescription>
    <VisaTypeId>2</VisaTypeId>
  </EventVisaInformationInfo>
</ArrayOfEventVisaInformationInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>