PUT api/Books/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
Book| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Title | string |
Required String length: inclusive between 0 and 50 |
|
| ISBN | string |
String length: inclusive between 0 and 50 |
|
| ShelfId | integer |
None. |
|
| ImageLink | string |
String length: inclusive between 0 and 500 |
|
| Description | string |
None. |
|
| Shelf | Shelf |
None. |
|
| Author | Collection of Author |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Title": "sample string 2",
"ISBN": "sample string 3",
"ShelfId": 4,
"ImageLink": "sample string 5",
"Description": "sample string 6",
"Shelf": {
"Id": 1,
"Name": "sample string 2",
"Designation": "sample string 3",
"Book": []
},
"Author": [
{
"Id": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"Book": []
},
{
"Id": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"Book": []
}
]
}
application/xml
Sample:
text/xml
Sample:
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.