GET insertgoodorder
Request Information
URI Parameters
None.
Body Parameters
Collection of goodordermodel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| goodname | string |
None. |
|
| money | integer |
None. |
|
| tedad | integer |
None. |
|
| uid | string |
None. |
|
| image | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"id": 1,
"goodname": "sample string 2",
"money": 3,
"tedad": 4,
"uid": "sample string 5",
"image": "sample string 6"
},
{
"id": 1,
"goodname": "sample string 2",
"money": 3,
"tedad": 4,
"uid": "sample string 5",
"image": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfgoodordermodel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/recyclerserver.Models">
<goodordermodel>
<goodname>sample string 2</goodname>
<id>1</id>
<image>sample string 6</image>
<money>3</money>
<tedad>4</tedad>
<uid>sample string 5</uid>
</goodordermodel>
<goodordermodel>
<goodname>sample string 2</goodname>
<id>1</id>
<image>sample string 6</image>
<money>3</money>
<tedad>4</tedad>
<uid>sample string 5</uid>
</goodordermodel>
</ArrayOfgoodordermodel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>