Article/List

List one or more library articles using the specified search criteria.

Listing or searching articles using 'tags' will increase response time.
Each time an article is retreived utilizing the 'article_id' the "view_count" for that article is increased by one. The 'view_count' is only returned utilizing the 'List' service.

Parameters
Parameter Type Required Description
article_id string optional The 'article_id' of a specific article to list.
category_id string optional Provide a 'category_id' to list articles associated with a specific category.
tags string optional Provide a tag or a part of one to search for an article by it's tags.
GET https://api.recurringstack.com/{format}/Article/List
//key,user_key,brand_id,response_format (xml or json),return (clean = return object, leave blank to return raw)
$rstack = new recurringstack('','','','xml','clean'); 

$params = array('article_id' => "",'category_id' => "",'tags' => "");
try { $response = $rstack->request('Article/List','GET',$params); } catch(Exception $e) { $error =  $e->getMessage(); echo "Error: $error"; }
print_r($response);
Response

Article/Create

Create a new article in the library under a category or sub category.

Article 'visibility' does not affect the articles ability to be listed using the 'list' API.

Parameters
Parameter Type Required Description
category_id string required The 'category_id' of the category where you wish to place the article.
title string required The title or subject of the article.
summary string optional A summary of the article conetents.
contents string required The contents of the article; either plan text or HTML.
tags string required One or more tags or keywords relating to the article contents. Tags can be comma seperated or any common tag format.
visibility string required The visibility of the article. 1 - for visible; 2 - for hidden. Visibility does not affect the status of the article.
POST https://api.recurringstack.com/{format}/Article/Create
//key,user_key,brand_id,response_format (xml or json),return (clean = return object, leave blank to return raw)
$rstack = new recurringstack('','','','xml','clean'); 

$params = array('category_id' => "",'title' => "",'summary' => "",'contents' => "",'tags' => "",'visibility' => "");
try { $response = $rstack->request('Article/Create','POST',$params); } catch(Exception $e) { $error =  $e->getMessage(); echo "Error: $error"; }
print_r($response);
Response

Article/Update

Update an existing library article.

Parameters
Parameter Type Required Description
article_id string required The 'article_id' of the artcile you wish to update.
category_id string required The 'category_id' of the category where you wish to place the article.
title string required The title or subject of the article.
summary string optional A summary of the article conetents.
contents string required The contents of the article; either plan text or HTML.
tags string required One or more tags or keywords relating to the article contents. Tags can be comma seperated or any common tag format.
visibility string required The visibility of the article. 1 - for visible; 2 - for hidden. Visibility does not affect the status of the article.
PATCH https://api.recurringstack.com/{format}/Article/Update
//key,user_key,brand_id,response_format (xml or json),return (clean = return object, leave blank to return raw)
$rstack = new recurringstack('','','','xml','clean'); 

$params = array('article_id' => "",'category_id' => "",'title' => "",'summary' => "",'contents' => "",'tags' => "",'visibility' => "");
try { $response = $rstack->request('Article/Update','PATCH',$params); } catch(Exception $e) { $error =  $e->getMessage(); echo "Error: $error"; }
print_r($response);
Response

Article/Delete

Delete a library artcile.

Like categories, articles can be restored from deletion within 90 days. Although articles can be restored, we highly recommend not using the delete service to hide articles and instead use the 'visibility' flag.

Parameters
Parameter Type Required Description
article_id string required The 'article_id' of the article you wish to delete.
DELETE https://api.recurringstack.com/{format}/Article/Delete
//key,user_key,brand_id,response_format (xml or json),return (clean = return object, leave blank to return raw)
$rstack = new recurringstack('','','','xml','clean'); 

$params = array('article_id' => "");
try { $response = $rstack->request('Article/Delete','DELETE',$params); } catch(Exception $e) { $error =  $e->getMessage(); echo "Error: $error"; }
print_r($response);
Response

Article/Restore

Restore a library article that's been previously deleted.

Parameters
Parameter Type Required Description
article_id string required The 'article_id' of the article you wish to restore.
PATCH https://api.recurringstack.com/{format}/Article/Restore
//key,user_key,brand_id,response_format (xml or json),return (clean = return object, leave blank to return raw)
$rstack = new recurringstack('','','','xml','clean'); 

$params = array('article_id' => "");
try { $response = $rstack->request('Article/Restore','PATCH',$params); } catch(Exception $e) { $error =  $e->getMessage(); echo "Error: $error"; }
print_r($response);
Response

Your content here

Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui, natus temporibus voluptate corporis possimus ab aut cumque.

Homepage

Quick Tips

You may remove all ID or Class names which contain _dm-, they are only used for demonstration.


Boxed Layout

Fluid Layout Remove the .boxed-layout and .centered-layout classes from the body.
Centered Layout Add a class .centered-layout to the body.
Boxed Layout Add a class .boxed-layout to the body.
Boxed Layout with background image

Add background image to the body.

<body class="boxed-layout" style='background-image: url("path_to_img/image.jpg");'>
    ..
    ..
</body>

Or it could be in your own class.

.bg-img {
background-image: url("path_to_img/image.jpg");
}
<body class="boxed-layout bg-img">
    ..
    ..
</body>

Color Schemes

Replace the current Bootstrap CSS and Nifty CSS path with the new path of the CSS color schemes you wish to use.

This is where you can change the color scheme of your app / website.

<head>
    ...
    <title>My Project</title>
    ...

    <!-- STYLESHEETS -->
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--- -->

    <!-- Bootstrap CSS [ REQUIRED ] -->
    <link rel="stylesheet" href="documentation/assets/css/color-schemes/SELECTED-SCEHEMS/bootstrap.min.css">

    <!-- Nifty CSS [ REQUIRED ] -->
    <link rel="stylesheet" href="documentation/assets/css/color-schemes/SELECTED-SCEHEMS/nifty.min.css">

</head>

Header

Sticky header Add a class .hd--sticky to the #root.
Expanded header Add a class .hd--expanded to the #root.
Expanded header with overlapping content. Add a class .overlapping to the #content > .content__header.
Disable rounded header. Add a class .rounded-0 to the #content > .content__header.

Animations

Add the following class to the body to change the animation transition.

Transition function name Class name
In Quart .in-quart
Out Quart .out-quart
In Back .in-back
Out Back .out-back
In Out Back .in-out-back
easeInOutBack .easeInOutBack
steps .steps
jumping .jumping
rubber .rubber
RecurringStack Documentation
RecurringStack Docs
Sign In

Background Images

Add an image to replace the solid background color
Layouts
Layouts
Transitions
Header
Additional Offcanvas New in BS v.5.0

Select the offcanvas placement.

Sidebars
Navigation
Right sidebar
Color Schemes
Light Completely bright color themes.
Dark Completely dark color themes.
Expanded Header
Fair Header
Full Header
Primary Nav
Brand
Tall Header New in v3.0
Scrollbars

Hides native scrollbars and creates custom styleable overlay scrollbars.

Offcanvas Header
Content Here

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente eos nihil earum aliquam quod in dolor, aspernatur obcaecati et at. Dicta, ipsum aut, fugit nam dolore porro non est totam sapiente animi recusandae obcaecati dolorum, rem ullam cumque. Illum quidem reiciendis autem neque excepturi odit est accusantium, facilis provident molestias, dicta obcaecati itaque ducimus fuga iure in distinctio voluptate nesciunt dignissimos rem error a. Expedita officiis nam dolore dolores ea. Soluta repellendus delectus culpa quo. Ea tenetur impedit error quod exercitationem ut ad provident quisquam omnis! Nostrum quasi ex delectus vero, facilis aut recusandae deleniti beatae. Qui velit commodi inventore.