REST API
REST API allows you quick and easy access to the main functions of Stimulsoft Cloud and automates user actions of the system in your application. Access points to the REST-services should be on your domain and be accessible via HTTP/HTTPS. For example, we will use the online version of Stimulsoft Cloud with the URL https://cloud.stimulsoft.com. A relative path begins with the prefix /1/ which means the first version of REST API.
EndPoint |
HTTP Verb |
Action |
/1/login |
GET |
|
/1/logout |
DELETE |
|
/1/signup |
POST |
|
/1/users |
GET |
|
/1/users |
POST |
|
/1/users/<UserId> |
GET |
|
/1/users/<UserId> |
PUT |
|
/1/users/<UserId> |
DELETE |
|
/1/users/current |
GET |
|
/1/users/current |
PUT |
|
/1/users/<UserId>/changepassword |
PUT |
|
/1/users/current/changepassword |
PUT |
|
/1/users/<UserId>/resetpassword |
PUT |
|
/1/users/current/resetpassword |
PUT |
|
/1/resetpassword/secretcode |
PUT |
|
/1/items |
GET |
|
/1/items/<ItemId> |
GET |
|
/1/items |
POST |
|
/1/items/<ItemId> |
PUT |
|
/1/items/<ItemId> |
DELETE |
|
/1/items/<ItemId>/share |
GET |
Getting information about public access to the element <ItemId> |
/1/items/<ItemId>/share |
PUT |
|
/1/items/<ItemId>/share |
DELETE |
|
/1/reporttemplates |
GET |
|
/1/reporttemplates/<ReportTemplateId>/ |
GET |
Getting information about the report template <ReportTemplateId> |
/1/reporttemplates |
POST |
|
/1/reporttemplates/<ReportTemplateId>/ |
DELETE |
|
/1/reporttemplates/<ReportTemplateId>/duplicate |
POST |
Creating a new copy of the report template in a cloud of the logged-in user. |