POST api/businessService/saveImageTextContent
Request Information
URI Parameters
None.
Body Parameters
ImageTextContent| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerName | string |
None. |
|
| articles | Collection of Article |
None. |
Request Formats
application/json, text/json
Sample:
{
"customerName": "sample string 1",
"articles": [
{
"title": "sample string 1",
"description": "sample string 2",
"url": "sample string 3",
"picurl": "sample string 4"
},
{
"title": "sample string 1",
"description": "sample string 2",
"url": "sample string 3",
"picurl": "sample string 4"
}
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| data | Object |
None. |
|
| error | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"data": {},
"error": "sample string 3"
}