POST api/ClubManagement/MemberShipType

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
Fgroup
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "cType": "sample string 1",
  "nMembershipTypeId": 2,
  "cMemberShipType": "sample string 3",
  "cShName": "sample string 4",
  "bLifeTime": true,
  "nDuration": 6,
  "nDurationType": 7,
  "bActive": true,
  "bCancelled": true,
  "nCompanyId": 10,
  "nCreatedBy": 11,
  "dCreatedDate": "2024-12-21T20:44:16.2183538+05:30",
  "nModifiedBy": 12,
  "dModifiedDate": "2024-12-21T20:44:16.2183538+05:30",
  "MemberShipTypeDtls": [
    {
      "nFacilityTypeId": 1,
      "nFreeSlotsPerYear": 2,
      "nDiscount": 3.0
    },
    {
      "nFacilityTypeId": 1,
      "nFreeSlotsPerYear": 2,
      "nDiscount": 3.0
    },
    {
      "nFacilityTypeId": 1,
      "nFreeSlotsPerYear": 2,
      "nDiscount": 3.0
    }
  ],
  "cMembershipTypeIds": "sample string 13",
  "nSubTypeId": 14
}

application/xml, text/xml

Sample:
<MemberShipType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TabHDManagement.Models">
  <MemberShipTypeDtls>
    <MemberShipTypeDtls>
      <nDiscount>3</nDiscount>
      <nFacilityTypeId>1</nFacilityTypeId>
      <nFreeSlotsPerYear>2</nFreeSlotsPerYear>
    </MemberShipTypeDtls>
    <MemberShipTypeDtls>
      <nDiscount>3</nDiscount>
      <nFacilityTypeId>1</nFacilityTypeId>
      <nFreeSlotsPerYear>2</nFreeSlotsPerYear>
    </MemberShipTypeDtls>
    <MemberShipTypeDtls>
      <nDiscount>3</nDiscount>
      <nFacilityTypeId>1</nFacilityTypeId>
      <nFreeSlotsPerYear>2</nFreeSlotsPerYear>
    </MemberShipTypeDtls>
  </MemberShipTypeDtls>
  <bActive>true</bActive>
  <bCancelled>true</bCancelled>
  <bLifeTime>true</bLifeTime>
  <cMemberShipType>sample string 3</cMemberShipType>
  <cMembershipTypeIds>sample string 13</cMembershipTypeIds>
  <cShName>sample string 4</cShName>
  <cType>sample string 1</cType>
  <dCreatedDate>2024-12-21T20:44:16.2183538+05:30</dCreatedDate>
  <dModifiedDate>2024-12-21T20:44:16.2183538+05:30</dModifiedDate>
  <nCompanyId>10</nCompanyId>
  <nCreatedBy>11</nCreatedBy>
  <nDuration>6</nDuration>
  <nDurationType>7</nDurationType>
  <nMembershipTypeId>2</nMembershipTypeId>
  <nModifiedBy>12</nModifiedBy>
  <nSubTypeId>14</nSubTypeId>
</MemberShipType>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "Data": null,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TabHDManagement.Models">
  <Data i:nil="true" />
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
</ResponseData>