POST api/BxArticleInformation
Request Information
URI Parameters
None.
Body Parameters
BxArticleInformationPostData| Name | Description | Type | Additional information |
|---|---|---|---|
| ArticleCodes | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"articleCodes": [
"sample string 1",
"sample string 2"
]
}
Response Information
Resource Description
BxArticleInformationPostResult| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | BxArticleInformationResponseType |
None. |
|
| ResponseMessage | string |
None. |
|
| Content | Collection of BxArticleInformation |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseCode": 0,
"responseMessage": "sample string 1",
"content": [
{
"name": "sample string 1",
"description": "sample string 2",
"code": "sample string 3",
"priority": 4,
"minimumUnitCount": 5.0,
"maximumUnitCount": 6.0,
"taxName": "sample string 7",
"taxFactor": 8.0
},
{
"name": "sample string 1",
"description": "sample string 2",
"code": "sample string 3",
"priority": 4,
"minimumUnitCount": 5.0,
"maximumUnitCount": 6.0,
"taxName": "sample string 7",
"taxFactor": 8.0
}
]
}