GetArticleGroups
This function is used to see which article groups are available for a goods owner.
Tags: GetArticleGroups, GetArticleGroupsResponse, GetArticleGroupsResult, ArticleGroupResult
Request XML
POST /xxx/Service.asmx HTTP/1.1
Host: api.ongoingsystems.se
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://ongoingsystems.se/WSI/GetArticleGroups"
<?xml version="1.0" encoding="utf-8" ?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetArticleGroups xmlns="http://ongoingsystems.se/WSI">
<UserName>string</UserName>
<Password>string</Password>
<GoodsOwnerCode>string</GoodsOwnerCode>
</GetArticleGroups>
</soap:Body>
</soap:Envelope>
Request specification
GetArticleGroups |
UserName |
string(50) |
Req. |
Your username |
Password |
string(50) |
Req. |
Your password |
GoodsOwnerCode |
string(400) |
Req. |
The name/code of your client |
Response XML
<?xml version="1.0" encoding="utf-8" ?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetArticleGroupsResponse xmlns="http://ongoingsystems.se/WSI">
<GetArticleGroupsResult>
<ArticleGroups>
<ArticleGroupResult>
<Name>string</Name>
<Code>string</Code>
<Comment>string</Comment>
<Id>int</Id>
</ArticleGroupResult>
<ArticleGroupResult>
<Name>string</Name>
<Code>string</Code>
<Comment>string</Comment>
<Id>int</Id>
</ArticleGroupResult>
</ArticleGroups>
</GetArticleGroupsResult>
</GetArticleGroupsResponse>
</soap:Body>
</soap:Envelope>
Response specification
GetArticleGroupsResponse |
GetArticleGroupsResult |
GetArticleGroupsResult |
|
GetArticleGroupsResult |
ArticleGroups |
ArticleGroupResult[] |
Containing elements of ArticleGroupResult |
ArticleGroupResult |
Name |
string(50) |
The name of the group |
Code |
string(50) |
The code of the group |
Comment |
string(200) |
A comment for the group |
Id |
int |
Ongoing's internal id for the group |