POST api/EventKeyPersonAllowedProfiles/CRUD

Add/Update/Delete EventKeyPersonAllowedProfiles

Request Information

URI Parameters

None.

Body Parameters

String Array of EventKeyPersonAllowedProfiles Names And Information(Mandatory)

Collection of EventKeyPersonAllowedProfilesInfo
NameDescriptionTypeAdditional information
Event_KeyPersonAllowed_ProfilesId

integer

None.

ProfileTypeId

integer

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

Deleted

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Event_KeyPersonAllowed_ProfilesId": 1,
    "ProfileTypeId": 1,
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1
  },
  {
    "Event_KeyPersonAllowed_ProfilesId": 1,
    "ProfileTypeId": 1,
    "IsActive": true,
    "IsDeleted": true,
    "Deleted": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventKeyPersonAllowedProfilesInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <EventKeyPersonAllowedProfilesInfo>
    <Deleted>1</Deleted>
    <Event_KeyPersonAllowed_ProfilesId>1</Event_KeyPersonAllowed_ProfilesId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <ProfileTypeId>1</ProfileTypeId>
  </EventKeyPersonAllowedProfilesInfo>
  <EventKeyPersonAllowedProfilesInfo>
    <Deleted>1</Deleted>
    <Event_KeyPersonAllowed_ProfilesId>1</Event_KeyPersonAllowed_ProfilesId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <ProfileTypeId>1</ProfileTypeId>
  </EventKeyPersonAllowedProfilesInfo>
</ArrayOfEventKeyPersonAllowedProfilesInfo>

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>