POST api/StockCardImage
Post list of stockCards.
Request Information
URI Parameters
None.
Body Parameters
Collection of ApiStockCardAttachmentInput| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| id_stock_card | integer |
None. |
|
| id_person | integer |
None. |
|
| file_name | string |
None. |
|
| title | string |
None. |
|
| data_base64 | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"id": 1,
"id_stock_card": 1,
"id_person": 2,
"file_name": "sample string 3",
"title": "sample string 4",
"data_base64": "sample string 5"
},
{
"id": 1,
"id_stock_card": 1,
"id_person": 2,
"file_name": "sample string 3",
"title": "sample string 4",
"data_base64": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfApiStockCardAttachmentInput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ApiStockCardAttachmentInput>
<id>1</id>
<id_stock_card>1</id_stock_card>
<id_person>2</id_person>
<file_name>sample string 3</file_name>
<title>sample string 4</title>
<data_base64>sample string 5</data_base64>
</ApiStockCardAttachmentInput>
<ApiStockCardAttachmentInput>
<id>1</id>
<id_stock_card>1</id_stock_card>
<id_person>2</id_person>
<file_name>sample string 3</file_name>
<title>sample string 4</title>
<data_base64>sample string 5</data_base64>
</ApiStockCardAttachmentInput>
</ArrayOfApiStockCardAttachmentInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |