Get Category
GET /services/category/{categoryId}
Response:
HTTP/1.1 200 OK
<?xml version="1.0" encoding="UTF-8"?>
<category>
<categoryId>1</categoryId>
<title>Site Content</title>
<name/>
</category>
Example
curl --header "Authorization:<token>" https://demo.memberclicks.net/services/category/20
Get Category List
GET /services/category
Response:
HTTP/1.1 200 OK
<?xml version="1.0" encoding="UTF-8"?>
<categoryList>
<category>
<categoryId>1</categoryId>
<title>Site Content</title>
<name/>
</category>
<category>
<categoryId>2</categoryId>
<title>Site Content 2</title>
<name/>
</category>
<category>
<categoryId>3</categoryId>
<title>Site Content 3</title>
<name/>
</category>
...
</categoryList>
Example
curl --header "Authorization:<token>" https://demo.memberclicks.net/services/category
Comments
0 comments
Please sign in to leave a comment.