Specific API Usage Limitations... 6 Daily Limitation... 6 Concurrency Limitation API Description... 7 Site Data API... 7
|
|
|
- Darlene Morgan
- 10 years ago
- Views:
Transcription
1 Last update: July 2015
2 SolarEdge API SolarEdge API Contents Last update: July SolarEdge API... 2 Contents... 2 General... 3 Purpose and scope... 3 Acronyms and abbreviations... 3 Introduction... 3 Technical Information... 4 Security... 4 Language and Time Encoding... 4 Request Format... 5 Response Formats... 5 JSONP Support... 5 Error Handling... 5 Usage Limitations... 6 Specific API Usage Limitations... 6 Daily Limitation... 6 Concurrency Limitation... 6 API Description... 7 Site Data API... 7 Site List... 7 Site Details... 8 Site Data: Start and End Dates... 9 Site Energy... 9 Site Energy Time Period Site Power Site Overview Site Image Installer Logo Image Site Equipment API Components List Inverter Technical Data Account List API Sensors API Get Sensor List Get Sensor Data API Versions Current Version Supported Version Data Types Time Unit Site Status Site Type General 2
3 Introduction Purpose and scope The purpose of this document is to outline the Application Programming Interface (API) available via SolarEdge Cloud-Based Monitoring Platform. The web services allow access to data saved in the monitoring server while keeping the data secured for authorized users. This document provides information about the technical features of the API, and describes each API with its parameters formats and other details. Acronyms and abbreviations The following table lists acronyms used in this document Abbreviation API WS REST CSV JSON XML Introduction Meaning Application Programing Interface Web Services Representational State Transfer Comma Separated Values JavaScript Object Notation Extensible Mark-up Language The SolarEdge API allows other software applications to access its monitoring system database for data analysis purposes, fleet management, displaying system data in other applications, etc. The following is a list of available APIs: API Name Site List Site Details Site Data: Start and End Dates Site Energy Site Energy Time Period Site Power Site Overview Site Image Installer Logo Image Components List Inverter Technical Data Account List API Get Sensor List Get Sensor Data API Versions API Output A list of sites for a given account, with the information on each site. This list allows convenient search, sort and pagination Details of a chosen site The site energy production start and end dates Site energy measurements Site energy for a requested timeframe Site power measurements in a 15-minute resolution Site current power, energy production (today, this month, lifetime) and lifetime revenue The site image as uploaded to the server, either scaled or original size The installer logo image as uploaded to the server. List of inverters with name, model, manufacturer, serial number and status Technical data on the inverter performance for a requested period of time The account details and list of all sub-accounts The list of sensors installed in the site The measurements of the sensors installed in the site The current and supported version numbers 3
4 Introduction An API key must be used in order to submit API requests. Account users should generate an Account Level API Key, and system owners should generate a Site level API Key. The API link is Please review the API terms and conditions at this link: Display requirements: When displaying information from the API, place the SolarEdge logo where it is clear to the user that the information source is SolarEdge s monitoring system. The logo should link to For any assistance with display, send an to [email protected] Technical Information The SolarEdge API is built as RESTful service: It uses predictable, resource oriented URLs It has built-in HTTP capabilities for passing parameters via the API It responds with standard HTTP codes It can return results in XML, JSON (including JSONP support) or CSV format. Security The API can be accessed via HTTPS protocol only. SolarEdge monitoring server supports both HTTPS/1.0 and HTTPS/1.1 protocols. All APIs are secured via an access token: every access to the API requires a valid token as a URL parameter named api_key. For example: api_key= L4QLVQ1LOKCQX2193VSEICXW61NP6B1O To generate an account users API key: In the Account Admin > Company Details tab > API Access section: 1 Acknowledge reading and agreeing to the SolarEdge API Terms & Conditions. 2 Click Generate API key. 3 Copy the key. 4 Click Save. 5 Use the key in all API requests To generate a Site API key: In the Site Admin > Site Details tab > API Access section: 1 Acknowledge reading and agreeing to the SolarEdge API Terms & Conditions. 2 Click Generate API key. 3 Copy the key. 4 Click Save. 5 Use the key in all API requests Language and Time Encoding When using special characters or spaces in URL, they must be url encoded. Date and time formats in all APIs are: The monitoring server data can be in different languages therefore data is retrieved using UTF-8. 4
5 Introduction Date and time: YYYY-MM-DD hh:mm:ss Date only: YYYY-MM-DD Dates are always in the time zone of the site. All physical measures are in the metric units system. Temperature values are always in Celsius degrees. Request Format The request format and parameters are specified per each API, and conform to the HTTP and REST standards. Parameter order in the request is not significant. Response Formats The user can request data in the following formats: JSON (application/json) XML(application/xml) CSV (text/csv). See specific APIs in the next sections for supported format in each API. If a specific format is not requested, the data will be retrieved via JSON. If the requested format is invalid, the system will generate HTTP error "Media not supported". The API user can request the response format in one of the methods below. The system handles the response format as follows: URL format Parameter &format=application/json Path extension the name of the API will be followed by the requested format name../details.json& HTTP header based on Accept header e.g. Accept application/json JSONP Support The API supports JSONP calls by appending a callback parameter with the name of a callback method at the end of the request. As JSONP content type is application/javascript, make sure the client sends this content type in the Accept header, otherwise HTTP 406 error may occur. The following example shows a JSON call VS. JSONP call: JSON: Request: Response body: {"details":{..}} JSONP: Request: Response body: myfunction({"details":{..}}); Error Handling The API system uses standard HTTP error codes for reporting errors that occurred while calling the API. The monitoring server API supports standard HTTP error codes, for example: if the user access is of an unknown resource, an HTTP 404 error will be returned. 5
6 Introduction Usage Limitations Usage limitations are enforced to prevent abuse of the monitoring server API, and these limitations may be changed in the future without notice. Additionally, a request rate limit is applied to prevent abuse of the service. If you exceed the limitations, an error message appears in the monitoring server API. If the limitation is further exceeded, the system may temporarily be nonoperational, or your access to the monitoring server API may be blocked. Specific API Usage Limitations Specific APIs may enforce different usage limitations based on parameters sent by the client. Refer to the next sections for details on specific API usage limitations. If there is a violation of a specific API validation, the HTTP 403 forbidden status code is returned. Daily Limitation Use of the monitoring server API is subject to a query limit of total 300 requests for a specific account token and a specific site ID from the same source IP. APIs that do not have a specific ID (e.g. Site List, Account List) will be counted as part of the total query limit. For example, a user can execute 10 daily site list (account level) API calls, and then 290 API calls for every site in the account (e.g. 290 calls using the account token for siteid and 290 calls using the account token for siteid ). An additional request to site or will result in HTTP 429 error too many requests.. Concurrency Limitation The monitoring server API allows up to 3 concurrent API calls from the same source IP. Any additional concurrent calls will return HTTP 429 error too many requests. To execute APIs concurrently without exceeding the above limitation, it is the client responsibility to implement a throttling mechanism on the client side. 6
7 API Description Site Data API Site List Returns a list of sites related to the given token. This API accepts parameters for convenient search, sort and pagination. URL: /sites/list Example URL (with all options): Formats: JSON, XML and CSV Request: The following are parameters to include in the request. Parameter Type Mandatory Default Value Description size Integer No The maximum number of sites returned by this call. The maximum number of sites that can be returned by this call is 100. If you have more than 100 sites, just request another 100 sites with startindex=100.this will fetch sites startindex Integer No 0 The first site index to be returned in the results searchtext String No sortproperty String No sortorder String No ASC Search text for this site. Searchable site properties: Name Notes Address City Zip code Full address Country A sorting option for this site list, based on one of its properties. Available sort properties: Name sort by site name Country sort by site country State sort by site state City sort by site city Address sort by site address Zip sort by site zip code Status sort by site status PeakPower sort by peak power InstallationDate sort by installation date Amount sort by amount of alerts MaxSeverity sort by alert severity CreationTime sort by site creation time Sort order for the sort property. Allowed values are ASC (ascending) and DESC (descending). Response: The returned data is the site list, including the sites that match the given search criteria. For each entry, the following information is displayed: id - the site ID name - the site name account id -the account this site belongs to status - the site status (see Site Status on page 19) peak power - site peak power
8 CURRENCY installationdate site installation date (format: yyyy-mm-dd hh:mm:ss ) notes type site type (see Site Type on page 20) location - includes country, state, city, address, secondary address, time zone and zip. alertquantity - number of open alerts this site have. alertseverity - the highest alert severity this site have publicsettings - includes if this site is public and its public name Example: JSON output: {"Sites":{"count":1567,"list":[{"id":1,"name":"Test","accountId":0,"status":"Active","peakPower":10.0,"cur rency":"eur","installationdate":" :00:00","notes":"test notes","type":"optimizers & Inverters","location":{"country":"the country","state":"the state","city":"the city","address":"the address","address2":"the address 2","zip":"00000"","timeZone":"GMT"},"alertQuantity":0,"alertSeverity":"NONE","uris":{"PUBLIC_URL":"the public URL name","image_uri":"the site image link"},"publicsettings":{"name":"the public name","ispublic":true}},{"id":1,"name":"test","accountid":0,"status":"active","peakpower":10.0,"currency":"eu R","installationDate":" :00:00","notes":"test notes","type":"optimizers & Inverters","location":{"country":"the country","state":"the state","city":"the city","address":"the address","address2":"the address 2","zip":"00000"","timeZone":"GMT"},"alertQuantity":0,"alertSeverity":"NONE","uris":{"PUBLIC_URL":"the public URL name","image_uri":"the site image link"},"publicsettings":{"name":"the public name","ispublic":true}}}]}} Site Details Displays the site details, such as name, location, status, etc. URL: /site/{siteid}/details Example URL: Accepted formats: JSON and XML Request: The following parameter is included in the request: Parameter Type Mandatory description Response: The returned data includes the following site information: id the site ID name the site name account id the account this site belongs to status the site status (see Site Status on page 19) peak power site peak power currency installationdate site installation date (format: yyyy-mm-dd hh:mm:ss ) notes type site type (see Site Type on page 20) location - includes country, state, city, address, secondary address, zip and time zone. alertquantity - number of open alerts this site have. alertseverity the highest alert severity this site have publicsettings - includes if this site is public (ispublic) and its public name (name) Example: JSON output: 8
9 {"details":{"id":0,"name":"site name","accountid":0,"status":"active","peakpower":9.8,"currency":"eur","installationdate":" :00:00","notes":"my notes","type":"optimizers & Inverters","location":{"country":"my country","state":"my state","city":"my city","address":"my address","address2":"","zip":"0000", "timezone":"gmt"},"alertquantity":0,"alertseverity":"none","uris":{"image_uri":"site image uri"},"publicsettings":{"name":null,"ispublic":false}}} Site Data: Start and End Dates Description: Return the energy production start and end dates of the site. URL: /site/{siteid}/dataperiod Example URL: Accepted formats: JSON and XML Request: The following parameter is included in the request: Parameter Type Mandatory description Response: The returned data includes <start, end> dates of the requested site. In case this site is not transmitting, the response is null. Example: JSON output example: {"dataperiod":{"startdate":" :00:00","endDate":" :59:59"}} For non-transmitting sites: {"dataperiod":{"startdate":null,"enddate":null}} Site Energy Description: Return the site energy measurements. URL: /site/{siteid}/ energy Example URL: Accepted formats: JSON, XML and CSV Usage limitation: This API is limited to one year when using timeunit=day (i.e., daily resolution) and to one month when using timeunit=quarter_of_an_hour or timeunit=hour. This means that the period between endtime and starttime should not exceed one year or one month respectively. If the period is longer, the system will generate error 403 with proper description. Request: The following are parameters to include in the request: Parameter Type Mandatory Description startdate String Yes The start date to return energy measurement enddate String Yes The end date return energy measurement timeunit String Aggregation granularity, see Time Unit on page 19. Default : DAY. Allowed values are: QUARTER_OF_AN_HOUR, HOUR, DAY, WEEK, MONTH, YEAR Response: The response includes the requested time unit, the units of measurement (e.g. Wh), and the pairs of date and energy for every date ({"date":" :00:00","value":null}). The date is calculated based on the time zone of the site. null means there is no data for that time. Example: JSON output: {"energy":{"timeunit":"day","unit":"wh","values":[{"date":" :00:00","value":null},{"date":" :00:00","value":null},{"date":" :00:00","value":null},{"date":" :00:00","value": }]}} 9
10 Site Energy Time Period Description: Return the site total energy produced for a given period. URL: /site/{siteid}/timeframeenergy Example URL: monitoringapi.solaredge.com/site/1/timeframeenergy?startdate= &enddate= Accepted formats: JSON and XML Usage limitation: This API is limited to one year when using timeunit=day (i.e., daily resolution). This means that the period between endtime and starttime should not exceed one year). If the period is longer, the system will generate error 403 with proper description Request: The following are parameters to include in the request: Parameter Type Mandatory Description startdate String Yes The start date to calculate energy generation enddate String Yes The end date to calculate energy generation Response: The response includes the energy summary for the given time period with units of measurement (e.g. Wh) The date is calculated based on the time zone where the site is located. Example: JSON output: {"timeframeenergy":{"energy": ,"unit":"wh"}} Site Power Description: Return the site power measurements in 15 minutes resolution. URL: /site/{siteid}/ power Example URL: 05%2013:00:00 Accepted formats: JSON, XML and CSV Usage limitation: This API is limited to one-month period. This means that the period between endtime and starttime should not exceed one month. If the period is longer, the system will generate error 403 with proper description. Request: The following are parameters to include in the request: Parameter Type Mandatory Description starttime String Yes The start (date + time) to get power measurements. endtime String Yes The end (date + time) to get power measurements Response: The response includes the time unit (i.e. QUARTER_OF_AN_HOUR), the measurement units (e.g. Watt) and the pairs of date and energy for every date ({"date":" :00:00","value": }) The date is calculated in ticks starting and presented based on the time zone of the site. null means there is no data for that time. Example: JSON output: {"power":{"timeunit":"quarter_of_an_hour","unit":"w","values":[{"date":" :00:00","value": },{"date":" :15:00","value": },{"date":" :30:00","value": },{"date":" :45:00","value": },{"date":" :00:00","value": },{"date":" :15:00","value": },{"date":" :30:00","value": },{"date":" :45:00","value": },{"date":" :00:00","value": },{"date":" :15:00","value": },{"date":"
11 13:30:00","value": },{"date":" :45:00","value": },{"date":" :00:00","value": }]}} Site Overview Description: Display the site overview data. URL: /site/{siteid}/ overview Example URL: site/{siteid}/overview Accepted formats: JSON and XML Request: The following parameter is included in the request: Parameter Type Mandatory Description Example: JSON output: Response: The response includes the site current power, daily energy, monthly energy, yearly energy and life time energy. {"overview":{"lastupdatetime":" :37:47","lifeTimeData":{"energy": ,"revenue": },"lastYearData":{"energy": ,"revenue":0.0},"lastM onthdata":{"energy": ,"revenue":0.0},"lastdaydata":{"energy":0.0,"revenue":0.0},"currentpower":{"power":0.0}}} Site Image Description: Display the site image as uploaded by the user. URL: /site/{siteid}/siteimage/{name} Example URL: Performance: The image element returns with a hash element, which is consistent as long as the image is not changed. When executing the Site Image API while using the hash element, the server matches the image hash and the hash sent in the URL. If a match is found, the API returns an HTTP 304 code. In case the image hash that appears in the URL is different than the one stored in the server, the image will be downloaded. When using the maxwidth and MaxHeight parameters, the hash element will be ignored. Image sizes: By default, the API returns the same image that was uploaded to the monitoring portal. If an image in a different scale is required, the API supports it via the maxwidth and maxheight parameters. The system will scale the image while keeping the aspect ratio of the original image, so the returned image will be smaller. Request: The following are parameters to include in the request: Parameter Type Mandatory Description name String No It is recommended to enter the site image name so the user can save the new image based on the name in the URL. maxwidth Integer No The maximum width to scale this image maxheight Integer No The maximum height to scale this image hash Integer No The image hash Response: The response includes one of the following: The requested image Error 404 not found, if the site has no image Error 304 unmodified, if a hash attribute was specified 11
12 Installer Logo Image Description: Return the site installer logo image as uploaded by the user. If such an image does not exist, the account installer logo is returned. URL: /site/{siteid}/installerimage/{name} Example URL: Request: The following are parameters to include in the request: Parameter Type Mandatory Description name String No It is recommended to enter the site image name so the user can save the new image based on the name in the URL. Response: The response includes the requested image. Site Equipment API Components List Description: Return a list of inverters/smis in the specific site. URL: /equipment/{siteid}/list Example URL (with all options): Accepted formats: JSON, XML and CSV Request: The following parameter is included in the request: Parameter Type Mandatory Description Response: The response includes a list of inverters/smis with their name, model, manufacturer and serial number.. name the inverter/smi name manufacturer the equipment manufacturer e.g. SolarEdge model the inverter/smi model e.g. SE16K serialnumber the equipment short serial number Example: JSON output: {"list":[{"name":"inverter 1","manufacturer":"SolarEdge","model":"SE16K","serialNumber":" "},{"name":"inverter 1","manufacturer":"SolarEdge","model":"SE16K","serialNumber":" "},{"name":"Inverter 1","manufacturer":"SolarEdge","model":"SE16K","serialNumber":" "},{"name":"Inverter 1","manufacturer":"SolarEdge","model":"SE16K","serialNumber":" "}]} Inverter Technical Data Description: Return specific inverter data for a given timeframe. URL: /equipment/{siteid} /{serialnumber}/data Example URL (with all options): / /data?startTime= %2011:00:00&endTime= %2013:00:00 Accepted formats: JSON, XML and CSV Usage limitation: This API is limited to one-week period. This means that the period between endtime and starttime should not exceed one week). If the period is longer, the system will generate error 403 with proper description. 12
13 Request: The following are parameters to include in the request: Parameter Type Mandatory Description serialnumber String Yes The inverter short serial number starttime String Yes The start (date + time) to get inverter data endtime String Yes The end (date + time) to get inverter data Response: The response includes technical parameters as for the inverter s performance (e.g., voltage, current, active power etc.), inverter type (1ph or 3ph), and software version. If an attribute is not supported based on the inverter version or type it will be omitted from the response. Original name Comment Data divided per phase timestamp Ac current no yes Ac voltage AC frequency QRef CosPhi Total Active Power apparentpower activepower reactivepower Dc voltage groundfaultresistance powerlimit % Lifetime energy vl1ton vl2ton vl1to2 vl2to3 vl3to1 Supported starting communication board version Supported starting communication board version Supported starting communication board version Supported starting communication board version yes yes yes yes no yes yes yes no no no no 1ph only 1ph only 3ph only 3ph only 3ph only 13
14 Example: {"data":{"count":9,"telemetries":[{"date":" :00:00","totalActivePower":null,"dcVoltage": ,"L1Data":{"acCurrent":22.653,"acVoltage": ,"acFre quency": }},{"date":" :05:00","totalActivePower":null,"dcVoltage": ,"L1Data":{"acCurrent": ,"acVoltage": ,"acFr equency": }},{"date":" :10:00","totalActivePower":null,"dcVoltage":195.84,"L1Data":{"acCurrent": ,"acVoltage": ,"acFre quency": }},{"date":" :15:00","totalActivePower":null,"dcVoltage": ,"L1Data":{"acCurrent": ,"acVoltage": ,"acFr equency": }},{"date":" :20:00","totalActivePower":null,"dcVoltage": ,"L1Data":{"acCurrent": ,"acVoltage": ,"acFr equency": }},{"date":" :25:00","totalActivePower":null,"dcVoltage": ,"L1Data":{"acCurrent": ,"acVoltage": ,"acFr equency": }},{"date":" :30:00","totalActivePower":null,"dcVoltage": ,"L1Data":{"acCurrent":2.6314,"acVoltage": ,"acFre quency":26.677}},{"date":" :35:00","totalActivePower":null,"dcVoltage": ,"L1Data":{"acCurrent": ,"acVoltage": ,"acFr equency": }},{"date":" :40:00","totalActivePower":null,"dcVoltage": ,"L1Data":{"acCurrent": ,"acVoltage": ,"acFr equency": }}]}} 14
15 Account List API Description: Return the account and list of sub-accounts related to the given token. This API accepts parameters for convenient search, sorting and pagination. URL: /accounts/list Example URL (with all options): Accepted formats: JSON, XML and CSV Request: The following are parameters to include in the request: Parameter Type Mandatory Default Value Description size Integer No 100 The maximum number of accounts returned by this call. If you have more than 100 sites, just request another 100 sites with startindex=100. This will fetch sites startindex Integer No 0 The first account index to be returned in the results searchtext String No Search text for this account. Searchable properties: Name the account name Notes contact person Country State City Zip Full address sortproperty String No A sorting option for this account list, based on one of its properties. Available sort properties: Name sort by account name country sort by account country city sort by account city address sort by account address zip sort by account zip code fax sort by account fax number phone sort by account phone notes sort by account notes sortorder String No ASC Sort order for the sort property. Allowed values are ASC (ascending) and DESC (descending). Response: The returned data is the account data, including sub-accounts. For each entry, the following information is displayed: id account ID name account name location includes country, state, city, address, address2 (secondary address), zip companywebsite the company web site contactperson the account contact person first name and surname the contact person phonenumber account phone number faxnumber account fax number notes account notes parentid account parent identifier 15
16 Example: JSON output example: {"accounts":{"count":2638,"list":[{"id":0,"name":" account 1","location":{"country":"my country","state":null,"city":null,"address":"my address 4","address2":"my address ","faxnumber":"","notes":" ","parentid":32,"uris":null},{"id":1,"name":" account 2","location":{"country":"my country","state":null,"city":null,"address":"my address 4","address2":"my address ","faxnumber":"","notes":" ","parentid":32,"uris":null},{"id":2,"name":" account 3","location":{"country":"my country","state":null,"city":null,"address":"my address 4","address2":"my address ","faxnumber":"","notes":" ","parentid":32,"uris":null}]}} Sensors API Get Sensor List Returns a list of all the sensors in the site, and the device to which they are connected. Base URL: /equipment/{siteid}/sensors Example: Accepted formats: JSON { Request: The following are parameters to include in the request: Parameter Type Mandatory Description Response: Returns the list of sensors installed in the site associated with the gateway they are connected with. Each entry will include the following parameters: connectedto: name of the gateway the sensor is connected to name: the name of the sensor measurement: what the sensor measures, e.g.: SensorGlobalHorizontalIrradiance, SensorDiffusedIrradiance, SensorAmbientTemperature type: the sensor type e.g.: Temperature, Irradiance. Example: JSON output example: "SiteSensors": { "count": 3, "list": [{ "connectedto": "Gateway 19", "count": 2, "sensors": [{ }, { "name": "Global horizontal irradiance", "measurement": "SensorGlobalHorizontalIrradiance", "type": "IRREDIANCE" "name": "Diffused irradiance", "measurement": "SensorDiffusedIrradiance", "type": "IRRADIANCE" 16
17 }] }, { "connectedto": "Gateway 1", "count": 1, "sensors": [{ "name": "Ambient temperature", "measurement": "SensorAmbientTemperature", "type": "TEMPERATURE" }] }] } } Get Sensor Data Returns the data of all the sensors in the site, by the gateway they are connected to. Base URL: /site/{siteid}/sensors?{starttime}=<timestamp>&{endtime}=<timestamp> Example: 05%2013:00:00 Accepted formats: JSON Usage limitation: This API is limited to one-week period. This means that the period between endtime and starttime should not exceed one week). If the period is longer, the system will generate error 403 with a description. { Request: The following are parameters to include in the request: Parameter Type Mandatory Description starttime String Yes The start (date + time) to get sensor data endtime String Yes The end (date + time) to get sensor data Response: Returns the telemetries reported by all sensors in the site, by the device they are connected to. Each entry will include the following parameters: connectedto: name of the gateway the sensor is connected to count: the number of telemetries date: timestamp of the telemetries Example: JSON output example: measurement: (e.g. ambienttemperature) and its numerical value (metric system) "sitesensors": { "data": [{ }, "connectedto": "Gateway 19", "count": 0, "telemetries": [] 17
18 { "connectedto": "Gateway 1", "count": 427, "telemetries": [{ "date": " :00:00", "ambienttemperature": , "moduletemperature": , "windspeed": , ] }, { "connectedto": "Gateway 3", "count": 427, "telemetries": [{ "date": " :00:00", }, { "connectedto": "Gateway 4", "count": 0, "telemetries": [] }, { "connectedto": "Gateway 489", "count": 0, "telemetries": [] }, { "connectedto": "Gateway 488", "count": 427, "telemetries": [{ "date": " :00:00", }] } } API Versions As the monitoring API evolves over time, users of the monitoring API need to make sure their code is interacting with the formally supported version. 18
19 Data Types The monitoring API supports previous versions to some extent. This can be verified by executing the Supported Version API (see below). The version format is <major.minor.release> where: Major - The main version number. This number increases when the version includes significant changes, which might not be backward compatible with previous versions in terms of APIs calls and returned results. Minor The sub-version number. This number increases when the version includes some changes, which might not affect the APIs, however the returned results can contain more information than the previous minor version. Release bug fixes The user should optionally specify the version as a parameter for each API (except this API) e.g. version= If it is omitted, current version is assumed (see Current Version below). Current Version Description: Return the most updated version number in <major.minor.revision> format. URL: /version/current Example URL: Accepted formats: JSON and XML Request: No parameters Response: The current version Example: JSON output: {"version":"1.0.0"} Supported Version Description: Return a list of supported version numbers in <major.minor.revision> format. URL: /version/supported Example URL: Accepted formats: JSON and XML Request: No parameters Response: A list of supported versions Example: JSON output: {"supported":["0.9.5","1.0.0"]} Data Types Time Unit Allowed values: DAY, WEEK, MONTH and YEAR Site Status Active The site is active 19
20 Data Types Pending Communication The site was created successfully however there is no communication yet from its inverters/smi. Site Type Optimizers and inverters Safety and monitoring interface Monitoring combiner boxes 20
Specific API Usage Limitations... 7 Daily Limitation... 7 Concurrency Limitation... 7 Bulk Use... 7. API Description... 8 Site Data API...
Last update: May 2016 SolarEdge API SolarEdge API Contents SolarEdge API... 2 Contents... 2 General... 4 Purpose and scope... 4 Acronyms and abbreviations... 4 Introduction... 4 Technical Information...
IoT-Ticket.com. Your Ticket to the Internet of Things and beyond. IoT API
IoT-Ticket.com Your Ticket to the Internet of Things and beyond IoT API Contents 1 Introduction... 4 1.1 Overview... 4 1.2 Abbreviations and definitions... 4 1.3 Data Model... 4 1.4 General Information...
HireDesk API V1.0 Developer s Guide
HireDesk API V1.0 Developer s Guide Revision 1.4 Talent Technology Corporation Page 1 Audience This document is intended for anyone who wants to understand, and use the Hiredesk API. If you just want to
Fairsail REST API: Guide for Developers
Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,
Table of Contents. Table of Contents
Table of Contents Table of Contents Table of Contents... 2 About This Guide... 3 Support and Contact Information... 4 Chapter 1 - Introducing the SolarEdge Monitoring Portal... 5 Chapter 2 - Using the
API documentation - 1 -
API documentation - 1 - Table of Contents 1. Introduction 1.1. What is an API 2. API Functions 2.1. Purge list of files 2.1.1 Description 2.1.2 Implementation 2.2. Purge of whole cache (all files on all
Contents. 2 Alfresco API Version 1.0
The Alfresco API Contents The Alfresco API... 3 How does an application do work on behalf of a user?... 4 Registering your application... 4 Authorization... 4 Refreshing an access token...7 Alfresco CMIS
Junos Space. Junos Space Security Director Restful Web Services API Reference. Modified: 2016-06-10. Copyright 2016, Juniper Networks, Inc.
Junos Space Junos Space Security Director Restful Web Services API Reference Modified: 2016-06-10 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net
SolarEdge Monitoring Portal. User Guide 1.1. Table of Contents
Table of Contents Table of Contents... 2 About This Guide... 3 Support and Contact Information... 4 Chapter 1 - Introducing the SolarEdge Monitoring Portal... 5 Chapter 2 - Using the SolarEdge Monitoring
Release Notes. DocuSign Spring 15 Release Notes. Contents
Release Notes Updated March 6, 2015 DocuSign Spring 15 Release Notes This document provides information about the updates deployed to the DocuSign Production environment as part of the March 6, 2015 DocuSign
itunes Store Publisher User Guide Version 1.1
itunes Store Publisher User Guide Version 1.1 Version Date Author 1.1 10/09/13 William Goff Table of Contents Table of Contents... 2 Introduction... 3 itunes Console Advantages... 3 Getting Started...
HTTP and HTTPS Statistics Services
CHAPTER 9 This chapter describes the HTTP and HTTPS Statistics service, which returns HTTP and HTTPS connection information and statistics for individual WAEs, device groups, and for the WAAS network,
Bitcoin Payment Gateway API
Bitcoin Payment Gateway API v0.3 BitPay, Inc. https://bitpay.com 2011-2012 BITPAY, Inc. All Rights Reserved. 1 Table of Contents Introduction Activating API Access Invoice States Creating an Invoice Required
Commerce Services Documentation
Commerce Services Documentation This document contains a general feature overview of the Commerce Services resource implementation and lists the currently implemented resources. Each resource conforms
Cloud Elements! Marketing Hub Provisioning and Usage Guide!
Cloud Elements Marketing Hub Provisioning and Usage Guide API Version 2.0 Page 1 Introduction The Cloud Elements Marketing Hub is the first API that unifies marketing automation across the industry s leading
Grandstream Networks, Inc.
Grandstream Networks, Inc. XML Based Downloadable Phone Book Guide GXP21xx/GXP14xx/GXP116x IP Phone Version 2.0 XML Based Downloadable Phone Book Guide Index INTRODUCTION... 4 WHAT IS XML... 4 WHY XML...
Grandstream Networks, Inc. UCM6100 Series IP PBX Appliance CDR and REC API Guide
Grandstream Networks, Inc. UCM6100 Series IP PBX Appliance CDR and REC API Guide Index CDR REPORT... 3 CDR FILTER... 3 CDR REPORT DATA FIELDS... 4 CDR REPORT OPERATIONS... 5 CDR CSV FILE... 6 API CONFIGURATION...
e-filing Secure Web Service User Manual
e-filing Secure Web Service User Manual Page1 CONTENTS 1 BULK ITR... 6 2 BULK PAN VERIFICATION... 9 3 GET ITR-V BY TOKEN NUMBER... 13 4 GET ITR-V BY ACKNOWLEDGMENT NUMBER... 16 5 GET RETURN STATUS... 19
Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08
Online signature API Version 0.20, 2015-04-08 Terms used in this document Onnistuu.fi, the website https://www.onnistuu.fi/ Client, online page or other system using the API provided by Onnistuu.fi. End
Secure XML API Integration Guide. (with FraudGuard add in)
Secure XML API Integration Guide (with FraudGuard add in) Document Control This is a control document DESCRIPTION Secure XML API Integration Guide (with FraudGuard add in) CREATION DATE 02/04/2007 CREATED
cielo24 Documentation
cielo24 Documentation Release 1.4.10 cielo24 November 19, 2015 1 The Basics 3 1.1 Getting Started.............................................. 3 1.2 Sandbox API...............................................
Secure XML API Integration Guide - Periodic and Triggered add in
Secure XML API Integration Guide - Periodic and Triggered add in Document Control This is a control document DESCRIPTION Secure XML API Integration Guide - Periodic and Triggered add in CREATION DATE 15/05/2009
Qlik REST Connector Installation and User Guide
Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All
OAuth 2.0 Developers Guide. Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900
OAuth 2.0 Developers Guide Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900 Table of Contents Contents TABLE OF CONTENTS... 2 ABOUT THIS DOCUMENT... 3 GETTING STARTED... 4
BMC Track-It! Web. Web Services API Guide. Version 11.3
BMC Track-It! Web Web Services API Guide Version 11.3 Legal Notices Copyright 1999, 2009 BMC Software, Inc. Copyright 1989-2014 Numara Software, Inc. BMC, BMC Software, and the BMC Software logo are the
Manage Workflows. Workflows and Workflow Actions
On the Workflows tab of the Cisco Finesse administration console, you can create and manage workflows and workflow actions. Workflows and Workflow Actions, page 1 Add Browser Pop Workflow Action, page
IBM Watson Ecosystem. Getting Started Guide
IBM Watson Ecosystem Getting Started Guide Version 1.1 July 2014 1 Table of Contents: I. Prefix Overview II. Getting Started A. Prerequisite Learning III. Watson Experience Manager A. Assign User Roles
vcloud Air Platform Programmer's Guide
vcloud Air Platform Programmer's Guide vcloud Air OnDemand 5.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.
Table of Contents. Registering For The Portal... 3 Accessing The Portal... 4 Site Administration... 5 Users Administration... 11
2 Table of Contents Registering For The Portal... 3 Accessing The Portal... 4 Site Administration... 5 Users Administration... 11 3 Registering For The Portal In order to use the SolarEdge Monitoring Portal,
SOA Software API Gateway Appliance 7.1.x Administration Guide
SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,
Safeguard Ecommerce Integration / API
Safeguard Ecommerce Integration / API Product Manual Version 3 Revision 1.11 Table of Contents 1. INTRODUCTION... 4 1.1 Available commands... 4 2. HOW THE ADMINISTRATION SYSTEM IS EXPECTED TO BE USED OPERATIONALLY...
WildFire Cloud File Analysis
WildFire Cloud File Analysis The following topics describe the different methods for sending files to the WildFire Cloud for analysis. Forward Files to the WildFire Cloud Verify Firewall File Forwarding
Getting Started with the icontact API
Getting Started with the icontact API Contents - Introduction -... 2 - URIs, URLs, Resources, and Supported Actions -... 3 Contacts Category... 3 Messages Category... 4 Track Category... 4 GET... 5 POST...
Chapter 10 Encryption Service
Chapter 10 Encryption Service The Encryption Service feature works in tandem with Dell SonicWALL Email Security as a Software-as-a-Service (SaaS), which provides secure data mail delivery solutions. The
SonicWALL GMS Custom Reports
SonicWALL GMS Custom Reports Document Scope This document describes how to configure and use the SonicWALL GMS 6.0 Custom Reports feature. This document contains the following sections: Feature Overview
Cofred Automated Payments Interface (API) Guide
Cofred Automated Payments Interface (API) Guide For use by Cofred Merchants. This guide describes how to connect to the Automated Payments Interface (API) www.cofred.com Version 1.0 Copyright 2015. Cofred.
1 Table of Contents SolarEdge Site Design Tool
1 Table of Contents SolarEdge Site Design Tool SolarEdge Site Designer V2.2 2 Table of Contents Table of Contents... 2 Introduction... 3 Starting to Use the Site Designer... 4 Begin a New Project... 9
Magento module Documentation
Table of contents 1 General... 4 1.1 Languages... 4 2 Installation... 4 2.1 Search module... 4 2.2 Installation in Magento... 6 2.3 Installation as a local package... 7 2.4 Uninstalling the module... 8
FileMaker Server 14. Custom Web Publishing Guide
FileMaker Server 14 Custom Web Publishing Guide 2004 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks
Title page. Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7
Title page Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7 APPLICATION API DEVELOPER GUIDE 3HE-10590-AAAA-TQZZA Issue 1 December 2015 Legal notice Legal notice Alcatel, Lucent, Alcatel-Lucent and the
Startup guide for Zimonitor
Page 1 of 5 Startup guide for Zimonitor This is a short introduction to get you started using Zimonitor. Start by logging in to your version of Zimonitor using the URL and username + password sent to you.
Matching Service Adapter
What is the Matching Service Adapter? Matching Service Adapter What does the Matching Service Adapter do? Table of contents Benefits of using the Matching Service Adapter Disadvantages of using the Matching
About This Guide SolarEdge Configuration Tool Software Guide. About This Guide
About This Guide 3 About This Guide This user guide is intended for Photovoltaic (PV) system owners, installers, technicians, maintainers, administrators and integrators who are authorized to configure
Web Development using PHP (WD_PHP) Duration 1.5 months
Duration 1.5 months Our program is a practical knowledge oriented program aimed at learning the techniques of web development using PHP, HTML, CSS & JavaScript. It has some unique features which are as
API Guide v 1.6 14/11/2013
1 About netcore netcore is a leader in digital communications space. The mission of the company is to help clients communicate effectively for marketing and business needs. We help organizations in the
Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication
Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication Contents Domain Controller Certificates... 1 Enrollment for a Domain Controller Certificate...
APPLICATION PROGRAM INTERFACE (API) FOR AIRASSURE WEB PM2.5 SOFTWARE
APPLICATION PROGRAM INTERFACE (API) FOR AIRASSURE WEB PM2.5 SOFTWARE APPLICATION NOTE PM2.5-003 (US) Introduction TSI has released an API for the AirAssure Web Software that will enable customers to extract
Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved
Manual Netumo NETUMO HELP MANUAL WWW.NETUMO.COM Copyright Netumo 2014 All Rights Reserved Table of Contents 1 Introduction... 0 2 Creating an Account... 0 2.1 Additional services Login... 1 3 Adding a
Software Engineering I CS524 Professor Dr. Liang Sheldon X. Liang
Software Requirement Specification Employee Tracking System Software Engineering I CS524 Professor Dr. Liang Sheldon X. Liang Team Members Seung Yang, Nathan Scheck, Ernie Rosales Page 1 Software Requirements
Form And List. SuperUsers. Configuring Moderation & Feedback Management Setti. Troubleshooting: Feedback Doesn't Send
5. At Repeat Submission Filter, select the type of filtering used to limit repeat submissions by the same user. The following options are available: No Filtering: Skip to Step 7. DotNetNuke User ID: Do
Perceptive Integration Server
Perceptive Integration Server Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: October 2013 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow,
Forumbee Single Sign- On
Forumbee Single Sign- On What is Single Sign- On? In basic terms, Single Sign- On (SSO) allows users of your web site to log into your Forumbee community automatically, without needing to sign up and create
Business Interaction Server. Configuration Guide. 10300685-000 Rev A
Business Interaction Server Configuration Guide 10300685-000 Rev A 2008 Kofax Image Products, Inc., 16245 Laguna Canyon Road, Irvine, California 92618, U.S.A. All rights reserved. Use is subject to license
ipayment Gateway API (IPG API)
ipayment Gateway API (IPG API) Accepting e-commerce payments for merchants Version 3.2 Intercard Finance AD 2007 2015 Table of Contents Version control... 4 Introduction... 5 Security and availability...
RealPresence Platform Director
RealPresence CloudAXIS Suite Administrators Guide Software 1.3.1 GETTING STARTED GUIDE Software 2.0 June 2015 3725-66012-001B RealPresence Platform Director Polycom, Inc. 1 RealPresence Platform Director
OpenCart AliExpress Retail Plugin User Guide
OpenCart AliExpress Retail Plugin User Guide By Lim Tee Chert 30 April 2015 (last updated on: 15 Oct 2015) http://www.aliwebstore.com Purpose: The purpose of this Opencart AliExpress Retail Plugin is to
REST Webservices API Reference Manual
crm-now/ps REST Webservices API Reference Manual Version 1.5.1.0 crm-now development documents Page 1 Table Of Contents OVERVIEW...4 URL FORMAT...4 THE RESPONSE FORMAT...4 VtigerObject...5 Id Format...5
KMx Enterprise: Integration Overview for Member Account Synchronization and Single Signon
KMx Enterprise: Integration Overview for Member Account Synchronization and Single Signon KMx Enterprise includes two api s for integrating user accounts with an external directory of employee or other
Integration SDK (HTTP API)
Integration SDK (HTTP API) 1. General agreements............................................ 3 2. Infrastructure................................................ 3 2.1 Get unique identifier.........................................
Axway API Gateway. Version 7.4.1
O A U T H U S E R G U I D E Axway API Gateway Version 7.4.1 3 February 2016 Copyright 2016 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.4.1
LBA API Manual Ver.1.0.1
NTT Communications Cloudⁿ LBA API Manual Ver.1.0.1 Please refrain from redistribution (distribution, reproduction, provision etc.) of the contents published in this document. 1 Ver.. Edited On Changes
Cvent Web Services API. Version V200611 June 2008
Cvent Web Services API Version V200611 Cvent, Inc. 8180 Greensboro Dr, Suite 450 McLean, VA 22102 866.318.4357 www.cvent.com [email protected] 1.0 Framework Overview... 1 1.1 Overview... 1 1.2 Compatible
Copyright: WhosOnLocation Limited
How SSO Works in WhosOnLocation About Single Sign-on By default, your administrators and users are authenticated and logged in using WhosOnLocation s user authentication. You can however bypass this and
Eucalyptus 3.4.2 User Console Guide
Eucalyptus 3.4.2 User Console Guide 2014-02-23 Eucalyptus Systems Eucalyptus Contents 2 Contents User Console Overview...4 Install the Eucalyptus User Console...5 Install on Centos / RHEL 6.3...5 Configure
Copyright Pivotal Software Inc, 2013-2015 1 of 10
Table of Contents Table of Contents Getting Started with Pivotal Single Sign-On Adding Users to a Single Sign-On Service Plan Administering Pivotal Single Sign-On Choosing an Application Type 1 2 5 7 10
GDC Data Transfer Tool User s Guide. NCI Genomic Data Commons (GDC)
GDC Data Transfer Tool User s Guide NCI Genomic Data Commons (GDC) Contents 1 Getting Started 3 Getting Started.......................................................... 3 The GDC Data Transfer Tool: An
ProxiBlue Dynamic Category Products
ProxiBlue Dynamic Category Products Thank you for purchasing our product. Support, and any queries, please log a support request via http://support.proxiblue.com.au If you are upgrading from a pre v3 version,
Reporting User Guide. Version Oct 2011 Page 1 of 65
Version Oct 2011 Page 1 of 65 Table of Contents Purpose...3 1. Quick Balances...3 1.1. Quick Balances Setup...3 2. Scheduled Statement Reporting...5 2.1. Scheduled Daily Operating Account Statement...5
QIWI Wallet Pull Payments API
QIWI Wallet QIWI Wallet Pull Payments API Version 2.1 Table of contents 1. Introduction... 2 1.1. Purpose of the API... 2 1.2. Things to Know About QIWI Wallet... 2 2. QIWI Wallet Interface... 3 2.1. Creating
HP Project and Portfolio Management Center
HP Project and Portfolio Management Center Software Version: 9.20 RESTful Web Services Guide Document Release Date: February 2013 Software Release Date: February 2013 Legal Notices Warranty The only warranties
Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal
Integrating Autotask Service Desk Ticketing with the Cisco OnPlus Portal This Application Note provides instructions for configuring Apps settings on the Cisco OnPlus Portal and Autotask application settings
SmartSantander Open Data access using FI-WARE G.E. [ORION]
SmartSantander Open Data access using FI-WARE G.E. [ORION What to find in this doc FI-WARE is an open cloud-based infrastructure for Future Internet applications and services, composed by different building
Single Sign-On Implementation Guide
Salesforce.com: Salesforce Winter '09 Single Sign-On Implementation Guide Copyright 2000-2008 salesforce.com, inc. All rights reserved. Salesforce.com and the no software logo are registered trademarks,
E*TRADE Developer Platform. Developer Guide and API Reference. October 24, 2012 API Version: v0
E*TRADE Developer Platform Developer Guide and API Reference October 24, 2012 API Version: v0 Contents Getting Started... 5 Introduction... 6 Architecture... 6 Authorization... 6 Agreements... 7 Support
PingFederate. Windows Live Cloud Identity Connector. User Guide. Version 1.0
Windows Live Cloud Identity Connector Version 1.0 User Guide 2011 Ping Identity Corporation. All rights reserved. Windows Live Cloud Identity Connector User Guide Version 1.0 April, 2011 Ping Identity
AS DNB banka. DNB Link specification (B2B functional description)
AS DNB banka DNB Link specification (B2B functional description) DNB_Link_FS_EN_1_EXTSYS_1_L_2013 Table of contents 1. PURPOSE OF THE SYSTEM... 4 2. BUSINESS PROCESSES... 4 2.1. Payment for goods and services...
OpenCart AliExpress Affiliate Plugin User Guide
OpenCart AliExpress Affiliate Plugin User Guide By TC 30 April 2015 (last updated on: 15 Oct 2015) http://www.aliwebstore.com Purpose: The purpose of this Opencart AliExpress Affiliate Plugin is to provide
Installation & Configuration Guide User Provisioning Service 2.0
Installation & Configuration Guide User Provisioning Service 2.0 NAVEX Global User Provisioning Service 2.0 Installation Guide Copyright 2015 NAVEX Global, Inc. NAVEX Global is a trademark/service mark
Taxi Service Design Description
Taxi Service Design Description Version 2.0 Page 1 Revision History Date Version Description Author 2012-11-06 0.1 Initial Draft DSD staff 2012-11-08 0.2 Added component diagram Leon Dragić 2012-11-08
Global Transport Secure ecommerce. Web Service Implementation Guide
Global Transport Secure ecommerce Web Service Implementation Guide Version 1.0 October 2013 Global Payments Inc. 10 Glenlake Parkway, North Tower Atlanta, GA 30328-3447 Global Transport Secure ecommerce
Information Server Documentation SIMATIC. Information Server V8.0 Update 1 Information Server Documentation. Introduction 1. Web application basics 2
Introduction 1 Web application basics 2 SIMATIC Information Server V8.0 Update 1 System Manual Office add-ins basics 3 Time specifications 4 Report templates 5 Working with the Web application 6 Working
www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013
www.novell.com/documentation Policy Guide Access Manager 3.1 SP5 January 2013 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation,
Grandstream XML Application Guide Three XML Applications
Grandstream XML Application Guide Three XML Applications PART A Application Explanations PART B XML Syntax, Technical Detail, File Examples Grandstream XML Application Guide - PART A Three XML Applications
FileMaker Server 15. Custom Web Publishing Guide
FileMaker Server 15 Custom Web Publishing Guide 2004 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks
User Guide. Trade Finance Global. Reports Centre. October 2015. nordea.com/cm OR tradefinance Name of document 8/8 2015/V1
User Guide Trade Finance Global Reports Centre October 2015 nordea.com/cm OR tradefinance Name of document 2015/V1 8/8 Table of Contents 1 Trade Finance Global (TFG) Reports Centre Overview... 4 1.1 Key
SIX Trade Repository AG
May 2016 Please note: The SIX Trade Repository (SIX TR) has not yet been registered with FINMA. It is therefore not yet an authorized Swiss trade repository. The content of this documentation is without
WildFire Features. Palo Alto Networks. PAN-OS New Features Guide Version 6.1. Copyright 2007-2015 Palo Alto Networks
WildFire Features Palo Alto Networks PAN-OS New Features Guide Version 6.1 Contact Information Corporate Headquarters: Palo Alto Networks 4401 Great America Parkway Santa Clara, CA 95054 http://www.paloaltonetworks.com/contact/contact/
GlobalSign Enterprise PKI Support. GlobalSign Enterprise Solution EPKI Administrator Guide v2.4
GlobalSignEnterprisePKISupport GlobalSignEnterpriseSolutionEPKIAdministratorGuidev2.4 1 TABLE OF CONTENTS GETTING STARTED... 3 ESTABLISHING EPKI SERVICE... 3 EPKI ADMINISTRATOR/USER CERTIFICATE... 4 ESTABLISHING
DNNSmart Super Store User Manual
DNNSmart Super Store User Manual Description This is one simple but useful e-commerce module. It consists of multiple submodules which can help you setup your DNN E-commerce sites quickly. It's very easy
Flight Workflow User's Guide. Release 12.0.0
Flight Workflow User's Guide Release 12.0.0 Copyright 2015 Signiant Inc. All rights reserved. Contents CHAPTER 1 Flight Introduction 4 FlightUploadReference 4 FlightDownloadReference 4 Cloud Storage Configuration
SPARROW Gateway. Developer Data Vault Payment Type API. Version 2.7 (6293)
SPARROW Gateway Developer Data Vault Payment Type API Version 2.7 (6293) Released July 2015 Table of Contents SPARROW Gateway... 1 Developer Data Vault Payment Type API... 1 Overview... 3 Architecture...
Polycom RealPresence Resource Manager System Administrator s Guide
Polycom RealPresence Resource Manager System Administrator s Guide 7.0.0 August 2012 3725-72110-001A Trademark Information Polycom and the names and marks associated with Polycom's products are trademarks
Ciphermail Gateway PDF Encryption Setup Guide
CIPHERMAIL EMAIL ENCRYPTION Ciphermail Gateway PDF Encryption Setup Guide March 6, 2014, Rev: 5454 Copyright c 2008-2014, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction 4 2 Portal 4 3 PDF encryption
Integration Client Guide
Integration Client Guide 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective
Riverbed Cascade Shark Common REST API v1.0
Riverbed Cascade Shark Common REST API v1.0 Copyright Riverbed Technology Inc. 2015 Created Feb 1, 2015 at 04:02 PM Contents Contents Overview Data Encoding Resources information: ping information: list
Package searchconsoler
Title Google Search Console R Client Version 0.2.0 Package searchconsoler April 3, 2016 Provides an interface with the Google Search Console, formally called Google Webmaster Tools. URL https://github.com/markedmondson1234/searchconsoler
