POST api/EventOrgProfileQuotas/CRUD

Add/Update/Delete Org Profile Quotas

Request Information

URI Parameters

None.

Body Parameters

Array of Org Profile Quotas And Information(Mandatory)

Collection of EventOrgProfileQuotasInformation
NameDescriptionTypeAdditional information
EventOrgProfileQuotaId

integer

None.

EventId

integer

None.

ProfileTypeId

integer

None.

OrganizationId

integer

None.

IncomingMembers

integer

None.

MalePlayers

integer

None.

FemalePlayers

integer

None.

Deleted

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "EventOrgProfileQuotaId": 1,
    "EventId": 1,
    "ProfileTypeId": 2,
    "OrganizationId": 3,
    "IncomingMembers": 1,
    "MalePlayers": 1,
    "FemalePlayers": 1,
    "Deleted": 1
  },
  {
    "EventOrgProfileQuotaId": 1,
    "EventId": 1,
    "ProfileTypeId": 2,
    "OrganizationId": 3,
    "IncomingMembers": 1,
    "MalePlayers": 1,
    "FemalePlayers": 1,
    "Deleted": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventOrgProfileQuotasInformation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers">
  <EventOrgProfileQuotasInformation>
    <Deleted>1</Deleted>
    <EventId>1</EventId>
    <EventOrgProfileQuotaId>1</EventOrgProfileQuotaId>
    <FemalePlayers>1</FemalePlayers>
    <IncomingMembers>1</IncomingMembers>
    <MalePlayers>1</MalePlayers>
    <OrganizationId>3</OrganizationId>
    <ProfileTypeId>2</ProfileTypeId>
  </EventOrgProfileQuotasInformation>
  <EventOrgProfileQuotasInformation>
    <Deleted>1</Deleted>
    <EventId>1</EventId>
    <EventOrgProfileQuotaId>1</EventOrgProfileQuotaId>
    <FemalePlayers>1</FemalePlayers>
    <IncomingMembers>1</IncomingMembers>
    <MalePlayers>1</MalePlayers>
    <OrganizationId>3</OrganizationId>
    <ProfileTypeId>2</ProfileTypeId>
  </EventOrgProfileQuotasInformation>
</ArrayOfEventOrgProfileQuotasInformation>

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>