GET api/StockCardImage/{id}
Fast method to get stockCard by id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiStockCardAttachmentOutput| 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. |
Response 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"
}
application/xml, text/xml
Sample:
<ApiStockCardAttachmentOutput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <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> </ApiStockCardAttachmentOutput>