POST api/AssemblyAppUsers/Save?BookId={BookId}&AssemblyId={AssemblyId}&MeetingSlno={MeetingSlno}&LoginUser={LoginUser}&LoginIP={LoginIP}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
BookId

integer

Required

AssemblyId

integer

Required

MeetingSlno

integer

Required

LoginUser

integer

Required

LoginIP

string

Required

Body Parameters

Collection of AssemblyAppUsersSaveVM
NameDescriptionTypeAdditional information
User

LoginUserLookupVM

Required

Mobile

string

Required

String length: inclusive between 0 and 20

Request Formats

application/json, text/json

Sample:
[
  {
    "User": {
      "UserId": 1,
      "UserName": "sample string 2",
      "UserDisplayName": "sample string 3"
    },
    "Mobile": "sample string 1"
  },
  {
    "User": {
      "UserId": 1,
      "UserName": "sample string 2",
      "UserDisplayName": "sample string 3"
    },
    "Mobile": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAssemblyAppUsersSaveVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <AssemblyAppUsersSaveVM>
    <Mobile>sample string 1</Mobile>
    <User>
      <UserDisplayName>sample string 3</UserDisplayName>
      <UserId>1</UserId>
      <UserName>sample string 2</UserName>
    </User>
  </AssemblyAppUsersSaveVM>
  <AssemblyAppUsersSaveVM>
    <Mobile>sample string 1</Mobile>
    <User>
      <UserDisplayName>sample string 3</UserDisplayName>
      <UserId>1</UserId>
      <UserName>sample string 2</UserName>
    </User>
  </AssemblyAppUsersSaveVM>
</ArrayOfAssemblyAppUsersSaveVM>

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.