POST api/Inventory/SaveDirectInventory
No documentation available.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
Model | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "sampleBooks": [ { "bookId": 1, "Version": 2, "quantity": 3 }, { "bookId": 1, "Version": 2, "quantity": 3 }, { "bookId": 1, "Version": 2, "quantity": 3 } ], "id": 1, "userId": 1, "inventoryTypeId": 2 }
application/xml, text/xml
Sample:
<DirectInventoryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/crmData.Models"> <id>1</id> <inventoryTypeId>2</inventoryTypeId> <sampleBooks> <sampleBookQuantity> <Version>2</Version> <bookId>1</bookId> <quantity>3</quantity> </sampleBookQuantity> <sampleBookQuantity> <Version>2</Version> <bookId>1</bookId> <quantity>3</quantity> </sampleBookQuantity> <sampleBookQuantity> <Version>2</Version> <bookId>1</bookId> <quantity>3</quantity> </sampleBookQuantity> </sampleBooks> <userId>1</userId> </DirectInventoryModel>
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.