POST api/ClergyCatDesigMap/Save?ClergyCategoryId={ClergyCategoryId}&LoginUser={LoginUser}&LoginIp={LoginIp}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ClergyCategoryId

integer

Required

LoginUser

integer

Required

LoginIp

string

Required

Body Parameters

Collection of ClergyCatDesigMapSave
NameDescriptionTypeAdditional information
ClergyCategory

ClergyCategoryLookup

Required

Designation

DesignationLookup

Required

Request Formats

application/json, text/json

Sample:
[
  {
    "ClergyCategory": {
      "ClergyCategoryId": 1,
      "ClergyCategoryName": "sample string 2",
      "ClergyTypeId": 3
    },
    "Designation": {
      "DesignationId": 1,
      "DesignationName": "sample string 2"
    }
  },
  {
    "ClergyCategory": {
      "ClergyCategoryId": 1,
      "ClergyCategoryName": "sample string 2",
      "ClergyTypeId": 3
    },
    "Designation": {
      "DesignationId": 1,
      "DesignationName": "sample string 2"
    }
  }
]

application/xml, text/xml

Sample:
<ArrayOfClergyCatDesigMapSave xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <ClergyCatDesigMapSave>
    <ClergyCategory>
      <ClergyCategoryId>1</ClergyCategoryId>
      <ClergyCategoryName>sample string 2</ClergyCategoryName>
      <ClergyTypeId>3</ClergyTypeId>
    </ClergyCategory>
    <Designation>
      <DesignationId>1</DesignationId>
      <DesignationName>sample string 2</DesignationName>
    </Designation>
  </ClergyCatDesigMapSave>
  <ClergyCatDesigMapSave>
    <ClergyCategory>
      <ClergyCategoryId>1</ClergyCategoryId>
      <ClergyCategoryName>sample string 2</ClergyCategoryName>
      <ClergyTypeId>3</ClergyTypeId>
    </ClergyCategory>
    <Designation>
      <DesignationId>1</DesignationId>
      <DesignationName>sample string 2</DesignationName>
    </Designation>
  </ClergyCatDesigMapSave>
</ArrayOfClergyCatDesigMapSave>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.