POST api/User/Books_Update

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
booksData
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "BookID": 1,
  "Price": 1.0,
  "BookTitle": "sample string 2",
  "Description": "sample string 3",
  "SubjectName": "sample string 4",
  "ClassName": "sample string 5",
  "BookTypeName": "sample string 6",
  "AuthorName": "sample string 7",
  "SubjectID": 1,
  "ClassID": 1,
  "BookTypeID": 1,
  "AuthorID": 1
}

application/xml, text/xml

Sample:
<BooksModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/crmData.Models">
  <AuthorID>1</AuthorID>
  <AuthorName>sample string 7</AuthorName>
  <BookID>1</BookID>
  <BookTitle>sample string 2</BookTitle>
  <BookTypeID>1</BookTypeID>
  <BookTypeName>sample string 6</BookTypeName>
  <ClassID>1</ClassID>
  <ClassName>sample string 5</ClassName>
  <Description>sample string 3</Description>
  <Price>1</Price>
  <SubjectID>1</SubjectID>
  <SubjectName>sample string 4</SubjectName>
</BooksModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

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

Sample:

Sample not available.