POST api/CharityCheckListMap/Save

Request Information

URI Parameters

None.

Body Parameters

CharityCheckListMapVM
NameDescriptionTypeAdditional information
Project

CharityProjectMasterLookupVM

Required

CreateUser

integer

Required

CreateIp

string

Required

String length: inclusive between 0 and 20

CheckListDtls

Collection of CharityCheckListMapDtlsVM

Required

Request Formats

application/json, text/json

Sample:
{
  "Project": {
    "ProjectId": 1,
    "ProjectName": "sample string 2",
    "ProjectType": {
      "ProjectTypeId": 1,
      "ProjectTypeName": "sample string 2"
    }
  },
  "CreateUser": 1,
  "CreateIp": "sample string 2",
  "CheckListDtls": [
    {
      "CheckList": {
        "CheckListId": 1,
        "CheckListName": "sample string 2"
      }
    },
    {
      "CheckList": {
        "CheckListId": 1,
        "CheckListName": "sample string 2"
      }
    }
  ]
}

application/xml, text/xml

Sample:
<CharityCheckListMapVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <CheckListDtls>
    <CharityCheckListMapDtlsVM>
      <CheckList>
        <CheckListId>1</CheckListId>
        <CheckListName>sample string 2</CheckListName>
      </CheckList>
    </CharityCheckListMapDtlsVM>
    <CharityCheckListMapDtlsVM>
      <CheckList>
        <CheckListId>1</CheckListId>
        <CheckListName>sample string 2</CheckListName>
      </CheckList>
    </CharityCheckListMapDtlsVM>
  </CheckListDtls>
  <CreateIp>sample string 2</CreateIp>
  <CreateUser>1</CreateUser>
  <Project>
    <ProjectId>1</ProjectId>
    <ProjectName>sample string 2</ProjectName>
    <ProjectType>
      <ProjectTypeId>1</ProjectTypeId>
      <ProjectTypeName>sample string 2</ProjectTypeName>
    </ProjectType>
  </Project>
</CharityCheckListMapVM>

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.