Sha256: f4349b1a2b2dbb6eb221231d2bed50c32018b86bb2bd2fce7150a13537a7f313
Contents?: true
Size: 1.82 KB
Versions: 3
Compression:
Stored size: 1.82 KB
Contents
# SwaggerAemClient::CqApi All URIs are relative to *http://localhost/* Method | HTTP request | Description ------------- | ------------- | ------------- [**get_login_page**](CqApi.md#get_login_page) | **GET** /libs/granite/core/content/login.html | [**post_cq_actions**](CqApi.md#post_cq_actions) | **POST** /.cqactions.html | # **get_login_page** > get_login_page ### Example ```ruby # load the gem require 'swagger_aem' api_instance = SwaggerAemClient::CqApi.new begin api_instance.get_login_page rescue SwaggerAemClient::ApiError => e puts "Exception when calling CqApi->get_login_page: #{e}" end ``` ### Parameters This endpoint does not need any parameter. ### Return type nil (empty response body) ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: text/html # **post_cq_actions** > post_cq_actions(authorizable_id, changelog) ### Example ```ruby # load the gem require 'swagger_aem' # setup authorization SwaggerAemClient.configure do |config| # Configure HTTP basic authorization: aemAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = SwaggerAemClient::CqApi.new authorizable_id = "authorizable_id_example" # String | changelog = "changelog_example" # String | begin api_instance.post_cq_actions(authorizable_id, changelog) rescue SwaggerAemClient::ApiError => e puts "Exception when calling CqApi->post_cq_actions: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **authorizable_id** | **String**| | **changelog** | **String**| | ### Return type nil (empty response body) ### Authorization [aemAuth](../README.md#aemAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: text/plain
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
swagger_aem-0.9.6 | docs/CqApi.md |
swagger_aem-0.9.5 | docs/CqApi.md |
swagger_aem-0.9.4 | docs/CqApi.md |