ISL Online Web API Documentation

Size: px
Start display at page:

Download "ISL Online Web API Documentation"

Transcription

1 ISL Online Web API Documentation

2 ISL Online Web API Documentation Contents 2 Table of Contents Foreword 0 Part I Overview 4 Part II Communication model 5 Part III Methods account/passw ord/change/ account/hosted/domain/set/ account/passw ord/forgot/ account/signup/ account/signup/tw ostep/ content/brochure/languages/get/ content/brochure/get/ content/resellers/get/ content/shop/items/get/ localization/translation/resources/get/ localization/translation/single/get/ localization/translation/single/insert/ report/accounthistory/status/get/ report/groop/session/details/get/ report/groop/sessions/overview/get/ report/groop/sessions/overview/usage/get/ report/license/usage/get/ report/light/sessions/overview/get/ report/light/sessions/overview/usage/get/ report/ppu/status/get/ report/pronto/chat/overview/get/ report/pronto/supporters/overview/get/ report/pronto/overview/hours/get/ report/pronto/overview/filters/get/ report/pronto/messages/offline/get/ sso/login/ sso/login/get/1 43 Part IV jquery plugin v

3 ISL Online Web API Documentation Contents 3 Index 0 3

4 ISL Online Web API Documentation Overview 4 1 Overview This document is intended for developers who want to write applications or web sites for interacting with ISL Online Account API. If you are unfamiliar with API concept, you should read through this documentation and examples before starting to code. User API provides only public methods that do not require any authentication for accessing them.

5 ISL Online Web API Documentation Communication model 5 2 Communication model User API communicates via HTTP protocol and provides 3 ways of communication (/GET, JSON(P) and XML). Apart from 4 general communication fields, that must be sent via GET, all other data can be sent in any way. We strongly encourage the use of over GET method for sending data (except in the case of JSONP). All data sent via or GET should be URL encoded! Available fields: method - method you wish to call. This field is mandatory! he - defines encoding of communication. By defining this setting, you define in what way would you like to receive response data from the API. Current version supports JSON1, XML1. This field is mandatory! hl - defines language. Value must be a ISO code. Language defines the language in which response message should be returned. If message is not yet translated, English version will be returned. hc - defines country. Value must be a ISO Alpha-2 code. Country setting defines country specifics that API might have. Response objects: JSON1 and XML1 JSON1 is version 1 of JSON response defined by ISL Online API protocol. Response object has following structure: method: which method was called response: the response values - result: this object hold all method result values/fields - description: translated message that can be shown to user - code: predefined message codes (look below) - args: arguments which correspond to message code; it can be in a following formats:

6 ISL Online Web API Documentation Communication model 6 - key-value pair: "data": "returned data value" - array: "data": ["array", "of", "values"] - data: various data which is method specific; it can be in any JSON valid format: - key-value pair: "data": "returned data value" - array: "data": ["array", "of", "values"] - object: "data": { "returned": "item" } JSON1 structure: j son={ " met hod" : " met hod_name", " r esponse" : { " r esul t " : { " descr i pt i on" : " gener at ed descr i pt i on", " descr i pt i on_or i g" : " gener at ed non- t r ansl at ed descr i pt i on", " code" : " r esul t _code", " ar gs" : " ar gument _key" OR [ " ar r ay", " of ", " ar gument s" ] }, " dat a" : " val ue" OR [ " ar r ay", " of ", " val ues" ] OR { " r et ur ned" : " val ue" } } } XML1 structure: <?xml ver si on=" 1. 0" encodi ng=" ut f - 8"?> <api > <met hod>met hod_name</ met hod> <r esponse> <r esul t > <descr i pt i on>gener at ed descr i pt i on</ descr i pt i on> <code>r esul t _code</ code> <ar gs>ar r ay</ ar gs> <ar gs>of </ ar gs> <ar gs>ar gument s</ ar gs> </ r esul t > <dat a>r et ur ned val ue</ dat a> <dat a>r et ur ned val ue</ dat a> </ r esponse> </ api > API Messages A part of response object is result code, which holds one of the predefined values:

7 ISL Online Web API Documentation Communication model 7 Method executed without any exceptions: code: OK - all methods were executed without any problems. User input/procedure errors (this is normal no need to fix implementation and usage of API - developer should handle this errors and show description to user): code: USER_ERROR Usage errors (developer did something wrong and should fix the error by reading documentation and following samples) code: IMPLEMENTATION_ERROR Internal errors (something went wrong on server - API developers will fix this errors. When spotted they should be reported back to support@islonline.com) code: INTERNAL_ERROR

8 ISL Online Web API Documentation Methods 8 3 Methods Here are described all the methods supported by User API, their input fields and their output. Methods are generally divided into categories and subcategories. 3.1 account/password/change/1 Changes password for user with sent UID. Password is set to password parameter value. ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i ne- account. php? met hod=account / passwor d/ change/ 1 e ma i l _ a d d r e s s [ s t r i n g ] ( r e q u i r e d ) u i d [ s t r i n g ] ( r e q u i r e d ) p a s s wo r d [ s t r i n g ] ( r e q u i r e d ) r a n d o m [ s t r i n g ] ( r e q u i r e d ) None emai l _addr ess: e. com ui d: domai n: : e. com: : mai n passwor d: secr et r andom: ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / passwor d/ change/ 1&he=JSON1 : emai l _addr e. com&ui d=domai n: : e. com: : mai n&passwor d=

9 ISL Online Web API Documentation Methods 9 secr et &r andom= ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / passwor d/ change/ 1&he=JSON1 : j son={ " emai l _addr ess" : " e. com", " ui d" : " domai n: : e. com: : mai n", " passwor d" : " secr et ", " r andom" : " " } 3.2 account/hosted/domain/set/1 Changes the account's domain name for hosted service. If account does not yet have a ISL domain, the domain with passed name will be created. ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i ne- account. php? met hod=account / host ed/ domai n/ set / 1 d o ma i n _ n a me [ s t r i n g ] ( r e q u i r e d ) u i d [ s t r i n g ] ( r e q u i r e d ) t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod None domai n_name: my domai n ui d: domai n: : e. com: : mai n t oken: secr et ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / host ed/ domai n/ set / 1&he=JSON1

10 ISL Online Web API Documentation Methods 10 : domai n_name=mydomai n&ui d=domai n: : e. com: : mai n&t oken=secr et ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / passwor d/ change/ 1&he=JSON1 : j son={ " domai n_name" : " mydomai n", " ui d" : " domai n: : e. com: : mai n", " t oken" : " secr et " } 3.3 account/password/forgot/1 Sends with account details to user registered with provided address. Description The call will generate an with link to reset password and send it to the emai l _addr ess. Exception: When setting hl=ja (japanese language) it will work as old password forgot and resend old with authentication details. Now it works like this it will send username and password for: - If address match www account address (from registration) - If address of additional user matches ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i ne- account. php? met hod=account / passwor d/ f or got / 1 e ma i l _ a d d r e s s [ s t r i n g ] ( r e q u i r e d )

11 ISL Online Web API Documentation Methods 11 None emai l _addr ess: e. com ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / passwor d/ f or got / 1&he=JSON1 : emai l _addr e. com ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / passwor d/ f or got / 1&he=JSON1 : j son={ " emai l _addr ess" : " e. com" } 3.4 account/signup/1 Returns the result of single step sign up procedure. hc and hl are required for signup. If values are not set, they will be detected automatically. ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i ne- account. php? met hod=account / si gnup/ 1 u s e r _ n a me [ s t r i n g ] ( r e q u i r e d ) p a s s wo r d [ s t r i n g ] ( r e q u i r e d ) o r i g i n [ o b j e c t ] i nf or mat i on about t he user r e s e l l e r I d [ i n t e g e r ] i f no val ue i s set, HQ r esel l er i d i s set a r i d [ i n t e g e r ] l ook at r esel l er I d

12 ISL Online Web API Documentation Methods 12 None user _name: e. com passwor d: secr et ar i d: or i gi n: { " appcodename" : " Mozi l l a", " appmi nor Ver si on" : " undef i ned", " appname" : " Net scape", " appver si on" : " 5. 0 ( Wi ndows) ", " cooki eenabl ed" : " t r ue", " cpucl ass" : " undef i ned", " onli ne" : " t r ue", " p l at f or m" : " Wi n32", " syst emlanguage" : " undef i ned", " user Agent " : " Mozi l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v: ) Gecko/ Fi r ef ox/ ", " user Language" : " undef i ned" } ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / si gnup/ 1&he=JSON1 user e. com, passwor d=secr et, r esel l er I d=333133, or i gi n= " { \ " appcodename\ " : \ " Mozi l l a\ ", \ " appmi nor Ver si on\ " : \ " undef i ned\ ", \ " appname \ " : \ " Net scape\ ", \ " appver si on\ " : \ " 5. 0 ( Wi ndows) \ ", \ " cooki eenabl ed\ " : \ " t r ue \ ", \ " cpucl ass\ " : \ " undef i ned\ ", \ " onli ne\ " : \ " t r ue\ ", \ " pl at f or m\ " : \ " Wi n32\ ", \ " syst emlanguage\ " : \ " undef i ned\ ", \ " user Agent \ " : \ " Mozi l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v: ) Gecko/ Fi r ef ox/ \ ", \ " user Language\ " : \ " undef i ned\ " } " ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / si gnup/ 1&he=JSON1 : j son={ " user _name" : " e. com", " passwor d" : " secr et ", " ar i d" : " ", " or i gi n" : " { \ " appcodename\ " : \ " Mozi l l a\ ", \ " appmi nor Ver si on\ " : \ " undef i ned\ ", \ " appname\ " : \ " Net scape\ ", \ " appver si on\ " : \ " 5. 0 ( Wi ndows) \ ", \ " cooki eenabl ed\ " : \ " t r ue\ ", \ " cpucl ass\ " : \ " undef i ned\ ", \ " onli ne\ " : \ " t r ue\ ", \ " pl at f or m\ " : \ " Wi n32\ ", \ " syst emlanguage\ " : \ " undef i ned \ ", \ " user Agent \ " : \ " Mozi l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v: ) Gecko/ Fi r ef ox/ \ ", \ " user Language\ " : \ " undef i ned\ " } " } 3.5 account/signup/twostep/1 Returns the result of a two step sign up procedure. hc and hl are required for signup. If values are not set, they will be detected automatically.

13 ISL Online Web API Documentation Methods 13 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i ne- account. php? met hod=account / si gnup/ t wost ep/ 1 St e p 1 : e ma i l _ a d d r e s s [ s t r i n g ] ( r e q u i r e d ) s t e p [ i n t e g e r ] ( r e q u i r e d ) s h o u l d h a v e v a l u e 1 St e p 2 : u s e r _ n a me [ s t r i n g ] ( r e q u i r e d ) s t e p [ i n t e g e r ] ( r e q u i r e d ) s h o u l d h a v e v a l u e 2 p a s s wo r d [ s t r i n g ] ( r e q u i r e d ) r a n d o m [ s t r i n g ] ( r e q u i r e d ) c o u n t r y _ c o d e [ s t r i n g ] ( r e q u i r e d ) o r i g i n [ o b j e c t ] ( r e q u i r e d ) a r i d [ i n t e g e r ] ( r e q u i r e d ) c o mp a n y f u l l _ n a me p h o n e _ n u mb e r None St e p 1 : emai l _addr ess: e. com st ep: 1 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / si gnup/ t wost ep/ 1&he=JSON1 : user e. com, st ep=1 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / si gnup/ t wost ep/ 1&he=JSON1 : j son={ " user _name" : " e. com", " st ep" : " 1" } St e p 2 :

14 ISL Online Web API Documentation Methods 14 user _name: e. com passwor d: secr et st ep: 2 r andom: count r y_code: ES or i gi n: { " appcodename" : " Mozi l l a", " appmi nor Ver si on" : " undef i ned", " appname" : " Net scape", " appver si on" : " 5. 0 ( Wi ndows) ", " cooki eenabl ed" : " t r ue", " cpucl ass" : " undef i ned", " onli ne" : " t r ue", " p l at f or m" : " Wi n32", " syst emlanguage" : " undef i ned", " user Agent " : " Mozi l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v: ) Gecko/ Fi r ef ox/ ", " user Language" : " undef i ned" } ar i d: c ompany: My Company f ul l _name: Ful l Name phone_number : GET ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / si gnup/ t wost ep/ 1&he=JSON1&user _name=user % 40exampl e. com&passwor d=secr et &st ep=2&r andom= &count r y_code=es&compan y =My%20Company&f ul l _name=ful l %20Name&phone_number =%2B1%2023% &ar i d=333133&or i gi n=%7b%22appcodename%22%3a%22moz i l l a%22%2c%20% 22appMi nor Ver s i on%22%3a%20%22undef i ned%22%2c%22appname%22%3a%22net s c ape%22% 2C%22appVer s i on%22%3a%225. 0%20( Wi ndows) %22%2C%22c ook i eenabl ed%22%3a%22t r ue% 22%2C%22c pucl as s%22%3a%22undef i ned%22%2c%22onli ne%22%3a%22t r ue%22%2c% 22pl at f or m%22%3a%22wi n32%22%2c%22s y s t emlanguage%22%3a%22undef i ned%22%2c% 22us er Agent %22%3A%22Moz i l l a%2f5. 0%20( Wi ndows%20nt%206. 1%3B%20WOW64%3B%20r v% 3A ) %20Gec k o%2f %20fi r ef ox%2f %22%2C%22us er Language%22%3A% 22undef i ned%22%7d ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / si gnup/ t wost ep/ 1&he=JSON1 : user e. com, passwor d=secr et, st ep=2, r andom= , count r y_code=es, or i gi n={ \ " appcodename\ " : \ " Mozi l l a\ ", \ " appmi nor Ver si on\ " : \ " undef i ned\ ", \ " appname\ " : \ " Net scape\ ", \ " appver si on\ " : \ " 5. 0 ( Wi ndows) \ ", \ " cooki eenabl ed\ " : \ " t r ue\ ", \ " cpucl ass\ " : \ " undef i ned\ ", \ " onli ne\ " : \ " t r ue\ ", \ " pl at f or m\ " : \ " Wi n32\ ", \ " syst emlanguage\ " : \ " undef i ned \ ", \ " user Agent \ " : \ " Mozi l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v: ) Gecko/ Fi r ef ox/ \ ", \ " user Language\ " : \ " undef i ned\ " }, ar i d=333133, c ompany =My Company, f ul l _name=ful l Name, phone_number = JSON GET ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / si gnup/ t wost ep/ 1&he=JSON1&j son%3d%7b%20% 22us er _name%22%20%3a%20%22us er %40ex ampl e. c om%22%2c%20%22pas s wor d%22%20%3a% 20%22s ec r et %22%2C%20%22s t ep%22%20%3a%20%222%22%2c%20%22r andom%22%20%3a%20% %22%2C%20%22c ount r y_c ode%22%20%3a%20%22es%22%2c%20%22ar i d%22%20% 3A%20% %22%2C%20%22c ompany%22%20%3a%20%22my%20company%22%2c%20% 22f ul l _name%22%20%3a%20%22ful l %20Name%22%2C%20%22phone_number %22%20%3A%20% 22%2B1%2023% %22%2C%20%22or i gi n%22%20%3a%20%22%%7b%22appcodename% 22%3A%22Moz i l l a%22%2c%20%22appmi nor Ver s i on%22%3a%20%22undef i ned%22%2c% 22appName%22%3A%22Net s c ape%22%2c%22appver s i on%22%3a%225. 0%20( Wi ndows) %22%2C %22c ook i eenabl ed%22%3a%22t r ue%22%2c%22c pucl as s%22%3a%22undef i ned%22%2c% 22onLi ne%22%3a%22t r ue%22%2c%22pl at f or m%22%3a%22wi n32%22%2c%22s y s t emlanguage %22%3A%22undef i ned%22%2c%22us er Agent %22%3A%22Moz i l l a%2f5. 0%20( Wi ndows%20nt% %3B%20WOW64%3B%20r v%3a ) %20Gec k o%2f %20fi r ef ox%2f % 22%2C%22us er Language%22%3A%22undef i ned%22%7d ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- account / 1-0/ i sl onl i neaccount. php?met hod=account / si gnup/ t wost ep/ 1&he=JSON1 : j son={ " user _name" : " e. com", " passwor d" : " secr et ", " st ep" : " 2", " r andom" : " ", " count r y_code" : " ES", " ar i d" : " ", " company" : " My Company", " f ul l _name" : " Ful l Name", " phone_number " : " ", " or i gi n" : " { \ " appcodename\ " : \ " Mozi l l a \ ", \ " appmi nor Ver si on\ " : \ " undef i ned\ ", \ " appname\ " : \ " Net scape\ ",

15 ISL Online Web API Documentation Methods 15 \ " appver si on\ " : \ " 5. 0 ( Wi ndows) \ ", \ " cooki eenabl ed\ " : \ " t r ue\ ", \ " cpucl ass\ " : \ " undef i ned\ ", \ " onli ne\ " : \ " t r ue\ ", \ " pl at f or m\ " : \ " Wi n32\ ", \ " syst emlanguage \ " : \ " undef i ned\ ", \ " user Agent \ " : \ " Mozi l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v: ) Gecko/ Fi r ef ox/ \ ", \ " user Language\ " : \ " undef i ned\ " } " } 3.6 content/brochure/languages/get/1 Returns available brochure languages and their website paths. ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- cont ent / 1-0/ i sl onl i ne- cont ent. php? met hod=cont ent / br ochur e/ l anguages/ get / 1 y e a r [ i n t e g e r ] J SON d a t a o b j e c t l anguages - key- val ue par, wher e key i s l anguage code and val ue i s pat h t o br ochur e year : 2012 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- cont ent / 1-0/ i sl onl i necont ent. php?met hod=cont ent / br ochur e/ l anguages/ get / 1&he=JSON1 : y ear =2012 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- sso/ 1-0/ i sl onl i ne- sso. php? met hod=cont ent / br ochur e/ l anguages/ get / 1&he=JSON1 : j son={ " year " : " 2012" }

16 ISL Online Web API Documentation Methods content/brochure/get/1 This is a binary dump API. Rather then returning url to PDF it serves the PDF file as mime type application/pdf. ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- cont ent / 1-0/ i sl onl i ne- cont ent. php? met hod=cont ent / br ochur e/ get / 1 y e a r [ i n t e g e r ] ( r e q u i r e d ) l a n g u a g e [ s t r i n g ] ( r e q u i r e d ) t y p e [ s t r i n g ] i f i t i s set t o pr emi um, a pr emi um br ochur e wi l l be r et ur ned PDF b i n a r y f i l e s e r v e d wi t h mi me t y p e a p p l i c a t i o n / p d f year : 2012 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- cont ent / 1-0/ i sl onl i necont ent. php?met hod=cont ent / br ochur e/ get / 1&he=JSON1 : y ear =2012&l anguage=en ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- sso/ 1-0/ i sl onl i ne- sso. php? met hod=cont ent / br ochur e/ get / 1&he=JSON1 : j son={ " year " : " 2012", " l anguage" : " en" } 3.8 content/resellers/get/1 Returns available brochure languages and their website paths.

17 ISL Online Web API Documentation Methods 17 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- cont ent / 1-0/ i sl onl i ne- cont ent. php? met hod=cont ent / r esel l er s/ get / 1 One of t he ar gument s i s r equi r ed a r i d [ i n t e g e r ] r et ur ns onl y dat a of r esel l er wi t h passed RI D c o u n t r y _ c o d e [ s t r i n g ] r et ur ns l i st of r esel l er s f or speci f i c count r y J SON d a t a o b j e c t r esel l er s sor t ed_name - obj ect wi t h r esel l er ' s i nf o ar i d - r esel l er ' s I D l abel - r esel l er ' s name cont act _det ai l s - obj ect wi t h r esel l er ' s cont act det ai l s avai l abl e f i el ds ( al l f i el ds ar e not r equi r ed f or al l r esel l er s) : appoi nt ment - appoi nt ed count r y name - f ul l r esel l er ' s name hr ef - r esel l er ' s web si t e f ul l _addr ess - r esel l er ' s addr ess emai l - r esel l er ' s cont act emai l addr ess t el ephone - r esel l er ' s phone number t el ef ax - r esel l er ' s t el ef ax number vat _i d - r esel l er ' s VAT number sel ect ed - i f r esel l er shoul d be pr esel l ect ed count r y_code: US ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- cont ent / 1-0/ i sl onl i necont ent. php?met hod=cont ent / r esel l er s/ get / 1&he=JSON1

18 ISL Online Web API Documentation Methods 18 : count r y_code=us ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- sso/ 1-0/ i sl onl i ne- sso. php? met hod=cont ent / r esel l er s/ get / 1&he=JSON1 : j son={ " count r y_code" : " US" } 3.9 content/shop/items/get/1 Returns list of all available items in shop with prices. Method also returns how price should be formated for specified country and what is correct currency code. ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- cont ent / 1-0/ i sl onl i ne- cont ent. php? met hod=cont ent / shop/ i t ems/ get / 1 c o u n t r y _ c o d e [ s t r i n g ] ( r e q u i r e d ) count r y code shoul d be i n t he f or m of upper cased t wo l et t er code ( I SO al pha- 2). The r esul t wi l l be count r y speci f i c ( cur r ency, pr i ces,... ) n o d e c i ma l [ b o o l e a n ] ( r e q u i r e d ) i f pr i ces wi t hout deci mal pl aces i s r equi r ed t hi s shoul d be set t o t r ue. Def aul t val ue i s f al se J SON d a t a o b j e c t cur r ency_symbol - count r y' s cur r ency code cur r ency_symbol _i n_f r ont - i f i s set t o t r ue, t he cur r ency code i s wr i t t en bef or e t he pr i ce cur r ency_deci mal - char act er used t o seper at e deci mal pl aces cur r ency_di gi t _gr oupi ng_symbol - char act er used t o t housands, mi l l i ons et c. cur r ency_di gi t s_af t er _deci mal - how many deci mal pl aces pr i ce shoul d have i t ems i t em_code - shop i t em code det ai l ed_descr i pt i on - i t em' s l ong descr i pt i on shor t _descr i pt i on - i t em' s shor t descr i pt i on f i l t er - t o whi ch gr oup i t em bel ongs sku - i t em' s SKU code pr i ce_numer i c - pr i ce i n t he f or m of number

19 ISL Online Web API Documentation Methods 19 pr i ce_di spl ay - pr i ce f or mat ed f or di spl ay quant i t y_par ams - det ai l s about quant i t y, dur at i on, di scount s et c. count r y_code: US ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- cont ent / 1-0/ i sl onl i necont ent. php?met hod=cont ent / shop/ i t ems/ get / 1&he=JSON1 : count r y_code=us ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- sso/ 1-0/ i sl onl i ne- sso. php? met hod=cont ent / shop/ i t ems/ get / 1&he=JSON1 : j son={ " count r y_code" : " US" } 3.10 localization/translation/resources/get/1 Returns list of all resources and their translation/localization status. ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- l ocal i zat i on/ 1-0/ i sl onl i nel ocal i zat i on. php?met hod=l ocal i zat i on/ t r ansl at i on/ r esour ces/ get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod p a r t n e r _ c o d e [ s t r i n g ] ( r e q u i r e d ) par t ner code pr ovi ded t o you by I SL Onl i ne l a n g u a g e _ c o d e [ s t r i n g ] ( r e q u i r e d ) I SO l anguage code; t hi s def i nes l ocal i zat i on l anguage o f f s e t [ i n t e g e r ] of f set 100 means t hat r esul t s wi l l be shown f r om 100t h r esul t on l i mi t [ i n t e g e r ] how many r esul t s ar e shown i n r esponse; maxi mum number i s 100 s o r t [ k e y - v a l u e p a i r a r r a y ] def i nes how r esul t s shoul d be sor t ed; f i r st val ue shoul d be f i el d name, second shoul d be sor t di r ect i on;

20 ISL Online Web API Documentation Methods 20 i f mul t i pl e sor t f i el ds ar e passed, t hey wi l l be par sed i n or der i n whi ch t hey r esi de i n ar r ay ( FI FO) Suppor t ed f i el ds: r esour ce_i d pr ogr am_name cont ext t r ansl at abl e_st r i ngs unt r ansl at ed_st r i ngs wor d_count Suppor t ed di r ect i ons: ASC - f or ascendi ng DESC - f or descendi ng f i l t e r [ k e y - v a l u e p a i r a r r a y ] def i nes how r esul t s shoul d be f i l t er ed; f i r st val ue shoul d be f i el d name, second shoul d be f i el d val ue; i f mul t i pl e f i el ds ar e passed AND l ogi cal oper at or wi l l be put bet ween t hem Suppor t ed f i el ds: modul e_name [ st r i ng] - execut es case i nsensi t i ve l ef t and r i ght sear ch ( SL wi l l mat ch al so I SL Onl i ne) pr ogr am_name [ st r i ng] - execut es case i nsensi t i ve l ef t and r i ght sear ch ( SL wi l l mat ch al so I SL Onl i ne) cont ext [ st r i ng] - execut es case i nsensi t i ve l ef t and r i ght sear ch ( SL wi l l mat ch al so I SL Onl i ne) pl ugi n_name [ st r i ng] - execut es case i nsensi t i ve l ef t and r i ght sear ch ( SL wi l l mat ch al so I SL Onl i ne) t r ansl at i on_ver si on [ st r i ng] - execut es exact sear ch ( 1. 1 wi l l not mat ch , but onl y 1. 1, al so 1. 1A wi l l not mat ch 1. 1a) t r ansl at ed [ bool ean] - i f t r ansl at ed i s set t o t r ue onl y r esour ces f ul l y t r ansl at ed wi l l be shown J SON d a t a o b j e c t r esour ces - ar r ay of r esour ces avai l abl e f or t r ansl at i on r esour ce_i d: i d of r esour ce modul e_name: t o whi ch modul e t r ansl at i on r ef er s pr ogr am_name: t o whi ch pr ogr am t r ansl at i on r ef er s cont ext : t o whi ch cont ext t r ansl at i on i s r el at ed pl ugi n_name: t o whi ch pl ugi n t r ansl at i on r ef er s t r ansl at i on_ver si on: t r ansl at i on ver si on t r ansl at abl e_st r i ngs: number of st r i ngs t hat can be t r ansl at ed unt r ansl at ed_st r i ngs: number of unt r ansl at ed st r i ngs wor d_count : number of wor ds t hat can be t r ansl at ed

21 ISL Online Web API Documentation Methods 21 EXAMPLE 1 ui d: : : e. com: : mai n t oken: secr et par t ner _code: par t ner - code l anguage_c ode: es of f set : 6 l i mi t : 3 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- l ocal i zat i on/ 1-0/ i sl onl i nel ocal i zat i on. php?met hod=l ocal i zat i on/ t r ansl at i on/ r esour ces/ get / 1&he=JSON1 : ui d=: : e. com: : mai n, t oken=secr et, par t ner _code=par t ner - code, l anguage_code=es, of f set =6, l i mi t =3 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- l ocal i zat i on/ 1-0/ i sl onl i nel ocal i zat i on. php?met hod=l ocal i zat i on/ t r ansl at i on/ r esour ces/ get / 1&he=JSON1 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et ", " par t ner _code" : " par t ner - code", " l anguage_code" : " es", " of f set " : " 6", " l i mi t " : " 3" } EXAMPLE 2: When usi ng sor t or f i l t er par amet er s, JSON GET or met hod must be used! ui d: : : e. com: : mai n t oken: secr et par t ner _code: par t ner - code l anguage_c ode: es of f set : 6 l i mi t : 3 sor t : r esour ce_i d=asc f i l t er : pr ogr am_name=l i ght, t r ansl at ed=f al se, t r ansl at i on_ver si on=1 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- l ocal i zat i on/ 1-0/ i sl onl i nel ocal i zat i on. php?met hod=l ocal i zat i on/ t r ansl at i on/ r esour ces/ get / 1&he=JSON1 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et ", " par t ner _code" : " par t ner - code", " l anguage_code" : " es", " of f set " : " 6", " l i mi t " : " 3", " sor t " : { " r esour ce_i d" : " ASC" }, " f i l t er " : { " pr ogr am_name" : " l i ght ", " t r ansl at ed" : " f al se", " t r ansl at i on_ver si on" : " 1" } } 3.11 localization/translation/single/get/1 Returns list of all strings available for translation in a single resource. ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- l ocal i zat i on/ 1-0/ i sl onl i nel ocal i zat i on. php?met hod=l ocal i zat i on/ t r ansl at i on/ si ngl e/ get / 1

22 ISL Online Web API Documentation Methods 22 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod p a r t n e r _ c o d e [ s t r i n g ] ( r e q u i r e d ) par t ner code pr ovi ded t o you by I SL Onl i ne l a n g u a g e _ c o d e [ s t r i n g ] ( r e q u i r e d ) I SO l anguage code; t hi s def i nes l ocal i zat i on l anguage r e s o u r c e _ i d [ i n t e g e r ] r esour ce i d, whi ch can be obt ai ned by cal l i ng l ocal i zat i on/ t r ansl at i on/ r esour ces/ get / 1 met hod J SON d a t a o b j e c t t r ansl at i ons - ar r ay of t r ansl at i on st r i ngs r esour ce_i d: i d of r esour ce l anguage_code: t o whi ch l anguage t r ansl at i ons r ef er t r ansl at i ons: ar r ay of t r ansl at i ons st r i ngs or i gi nal _t ext : t ext exposed f or t r ansl at i on t r ansl at ed_t ext : cur r ent t r ansl at i on of or i gi nal t ext ui d: : : e. com: : mai n t oken: secr et par t ner _code: par t ner - code l anguage_c ode: es r esour ce_i d: 108 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- l ocal i zat i on/ 1-0/ i sl onl i nel ocal i zat i on. php?met hod=l ocal i zat i on/ t r ansl at i on/ si ngl e/ get / 1&he=JSON1 : ui d=: : e. com: : mai n, t oken=secr et, par t ner _code=par t ner - code, l anguage_code=es, r esour ce_i d=108 ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- l ocal i zat i on/ 1-0/ i sl onl i nel ocal i zat i on. php?met hod=l ocal i zat i on/ t r ansl at i on/ si ngl e/ get / 1&he=JSON1

23 ISL Online Web API Documentation Methods 23 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et ", " par t ner _code" : " par t ner - code", " l anguage_code" : " es", " r esour ce_i d" : " 108" } 3.12 localization/translation/single/insert/1 Inserts new translation for given translation string in single resource. ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- l ocal i zat i on/ 1-0/ i sl onl i nel ocal i zat i on. php?met hod=l ocal i zat i on/ t r ansl at i on/ si ngl e/ i nser t / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod p a r t n e r _ c o d e [ s t r i n g ] ( r e q u i r e d ) par t ner code pr ovi ded t o you by I SL Onl i ne l a n g u a g e _ c o d e [ s t r i n g ] ( r e q u i r e d ) I SO l anguage code; t hi s def i nes l ocal i zat i on l anguage r e s o u r c e _ i d [ i n t e g e r ] r esour ce i d, whi ch can be obt ai ned by cal l i ng l ocal i zat i on/ t r ansl at i on/ r esour ces/ get / 1 met hod o r i g i n a l _ t e x t [ s t r i n g ] or i gi nal t ext, whi ch can be obt ai ned by cal l i ng l ocal i zat i on/ t r ansl at i on/ si ngl e/ get / 1 met hod t r a n s l a t e d _ t e x t [ s t r i n g ] new t r ansl at i on t ext ; cur r ent t r ansl at i on t ext can be obt ai ned by cal l i ng l ocal i zat i on/ t r ansl at i on/ si ngl e/ get / 1 met hod J SON d a t a o b j e c t t r ansl at i on - i nf or mat i on about what was updat ed r esour ce_i d: i d of r esour ce l anguage_code: t o whi ch l anguage t r ansl at i ons r ef er or i gi nal _t ext : t ext t hat was t r ansl at ed t r ansl at ed_t ext : new t r ansl at i on t ext

24 ISL Online Web API Documentation Methods 24 ui d: : : e. com: : mai n t oken: secr et par t ner _code: par t ner - code l anguage_c ode: es r esour ce_i d: 108 or i gi nal _t ext : Admi n mode t r ansl at ed_t ext : Admi ni st r at i ve mode ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- l ocal i zat i on/ 1-0/ i sl onl i nel ocal i zat i on. php?met hod=l ocal i zat i on/ t r ansl at i on/ si ngl e/ i nser t / 1&he=JSON1 : ui d=: : e. com: : mai n, t oken=secr et, par t ner _code=par t ner - code, l anguage_code=es, r esour ce_i d=108, or i gi nal _t ext =Admi n mode, t r ansl at ed_t ext =Admi ni st r at i ve mode ht t ps: / / www. i sl onl i ne. com/ api / i sl onl i ne- l ocal i zat i on/ 1-0/ i sl onl i nel ocal i zat i on. php?met hod=l ocal i zat i on/ t r ansl at i on/ si ngl e/ i nser t / 1&he=JSON1 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et ", " par t ner _code" : " par t ner - code", " l anguage_code" : " es", " r esour ce_i d" : " 108", " or i gi nal _t ext " : " Admi n mode", " t r ansl at ed_t ext " : " Admi ni st r at i ve mode" } 3.13 report/accounthistory/status/get/1 Returns account's subscription status. met hod=r epor t / account hi st or y/ st at us/ get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod

25 ISL Online Web API Documentation Methods 25 J SON d a t a o b j e c t l hs_t ype_code: code of subscr i pt i on t ype l hs_t ype_descr i pt i on: subscr i pt i on t ype sub: subscr i pt i on ( t =t r ue/ yes, f =f al se/ no) sub_act i ve: i s subscr i pt i on st i l l act i ve ( t =t r ue/ yes, f =f al se/ no) sub_st ar t : subscr i pt i on st ar t dat et i me sub_st ar t _l ocal : subscr i pt i on st ar t dat et i me i n l ocal t i me sub_expi r e: subscr i pt i on expi r y dat et i me sub_expi r e_l ocal : subscr i pt i on expi r y dat et i me i n l ocal t i me sub_sessi on_max_concur r ent : number of l i censes i n subscr i pt i on sub_sessi on_max_cl i ent s: max. number of cl i ent s al l owed sub_mul t i _sessi on_l i cense: does subscr i pt i on i ncl ude mul t i sessi on l i cense ( t =t r ue/ yes, f =f al se/ no) sub_pr emi um_suppor t : does subscr i pt i on i ncl ude pr emi um suppor t ( t =t r ue/ yes, f =f al se/ no) sub_pl ugi n_vi deo: does subscr i pt i on i ncl ude vi deo pl ugi n ( t =t r ue/ yes, f =f al se/ no) sub_pl ugi n_audi o: does subscr i pt i on i ncl ude audi o pl ugi n ( t =t r ue/ yes, f =f al se/ no) ppu: does t hi s account i ncl ude Pay Per Use ( t =t r ue/ yes, f =f al se/ no) ppu_act i ve: i s Pay Per Use st i l l act i ve - can t he cr edi t s be used ( t =t r ue/ yes, f =f al se/ no) ppu_expi r e: Pay Per Use subscr i pt i on expi r y dat et i me ppu_expi r e_l ocal : Pay Per Use subscr i pt i on expi r y dat et i me i n l ocal t i me ppu_cr edi t s: how many Pay Per Use t i me i s l ef t on subscr i pt i on ( hh: mm: ss) ; i n case t her e i s no PPU t i me, t hi s val ue mi ght show - 00: 00: 01 ppu_cr edi t s_mi nut es: how many Pay Per Use t i me i n mi nut es i s st i l l avai l abl e on subscr i pt i on; i n case t her e i s no PPU t i me, t hi s val ue mi ght s how cur r ency_code: subscr i ber ' s cur r ency code ui d: : : e. com: : mai n t oken: secr et met hod=r epor t / account hi st or y/ st at us/ get / 1&he=JSON1 : ui d=: : e. com: : mai n, t oken=secr et met hod=r epor t / account hi st or y/ st at us/ get / 1&he=JSON1 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et " }

26 ISL Online Web API Documentation Methods report/groop/session/details/get/1 Returns all details about a single ISL Groop session. met hod=r epor t / gr oop/ sessi on/ det ai l s/ get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod s e s s i o n _ i d [ s t r i n g ] ( r e q u i r e d ) J SON d a t a o b j e c t event s - ar r ay of user j oi n/ l eave event s t i me: uni x t i mest amp when t he event occur r ed count er : user count er change val ue user s - ar r ay of of al l user s t hat wer e i n t he sessi on user _i d: uni que user i d user _ni ck: ni ckname t hat user used i n t he sessi on user _i p_addr ess: I P f r om whi ch user j oi ned t he sessi on par t i ci pat i on: user ' s par t i ci pat i on dur at i on ( hh: mm: ss) par t i ci pat i on_i n_sec: par t i ci pat i on dur at i on i n seconds count r y: count r y f r om whi ch user connect ed t o t he sessi on; can be nul l i n case count r y coul d not be det ect ed ci t y: ci t y f r om whi ch t hi s user connect ed t o t he sessi on; can be nul l i n case count r y coul d not be det ect ed pl at f or m: user ' s pl at f or m on whi ch I SL Gr oop i s/ was r unni ng gr oop_ver si on: I SL Gr oop ver si on t hat user i s/ was r unni ng i n t he sessi on r egi st r ant s - ar r ay of user s t hat r egi st er ed f or t hi s sessi on user _r egi st r at i on_t i me: t i mest amp of user r egi st r at i on user _ni ck: r egi st r ant ' s ni ck name user _mai l : r egi st r ant ' s emai l addr ess sessi on - sessi on det ai l s sessi on_t ype: t ype of sessi on ( Webi nar, Meet i ng, et c) ; i f t hi s val ue i s empt y or nul l, sessi on t ype was meet i ng

27 ISL Online Web API Documentation Methods 27 sesson_t i t l e: sessi on' s t i t l e st at us_code: cur r ent sessi on' s st at us ( RUNNI NG, FI NI SHED, et c) sessi on_code: sessi on' s code sessi on_owner : f ul l user name of sessi on owner sessi on_owner _i d: uni que I D of t he owner st op_t i me: uni x t i mest amp of end of sessi on st ar t _t i me: uni x t i mest amp of st ar t of sessi on dur at i on: sessi on dur at i on t i me ( hh: mm: ss) dur at i on_i n_sec: sessi on dur at i on i n seconds par t i ci pant s: number of uni que par t i ci pant s i n al l sessi ons ppu: how much Pay Per Use cr edi t was used i n t hi s sessi on user s_r egi st er ed_count : number of user s t hat r egi st er ed t o j oi n t he sessi on ( i n case of webi nar ) ui d: : : e. com: : mai n t oken: secr et sessi on_i d: met hod=r epor t / gr oop/ sessi on/ det ai l s/ get / 1&he=JSON1 : ui d=: : e. com: : mai n, t oken=secr et, sessi on_i d=12345 met hod=r epor t / gr oop/ sessi on/ det ai l s/ get / 1&he=JSON1 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et ", " sessi on_i d" : " 12345" } 3.15 report/groop/sessions/overview/get/1 Returns general information about ISL Groop usage for a given time period. met hod=r epor t / gr oop/ sessi ons/ over vi ew/ get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1

28 ISL Online Web API Documentation Methods 28 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod f r o m [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he st ar t of t he per i od i n quest i on t o [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he end of t he per i od i n quest i on J SON d a t a o b j e c t - Al l f i e l d s d e p e n d o n t i me p e r i o d sessi ons_count : number of sessi ons st ar t ed sessi on_count _uni que: number of uni que sessi ons st ar t ed sessi ons_dur at i on: t ot al dur at i on of al l sessi ons ( hh: mm: ss) sessi on_dur at i on_i dl e: t ot al sessi ons i dl e t i me ( onl y one per son was i n t he sessi on) ppu: ammount Pay Per Use used by I SL Gr oop sessi ons ( hh: mm: ss) par t i ci pant s_count : number of user s i n al l sessi ons par t i ci pant s_count _uni que: number of uni que user s i n al l sessi ons l i censes_max: hi ghest number of l i censes used by a si ngl e sessi on sessi on_dur at i on_aver age: aver age l engt h of a sessi on par t i ci pant s_count _aver age: aver age number of par t i ci pant s i n t he sessi ons sessi ons_count _uni que_per cent : per cent age of uni que sessi ons par t i ci pant s_count _uni qi e_per cent : per cent age of uni que user s ui d: : : e. com: : mai n t oken: secr et f r om: t o: met hod=r epor t / gr oop/ sessi ons/ over vi ew/ get / 1&he=JSON1 : ui d=: : e. com: : mai n, t oken=secr et, f r om= , t o= met hod=r epor t / gr oop/ sessi ons/ over vi ew/ get / 1&he=JSON1 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et ", " f r om" : " ", " t o" : " " }

29 ISL Online Web API Documentation Methods report/groop/sessions/overview/usage/get/1 Returns ISL Groop usage for each time unit in requested time period. met hod=r epor t / gr oop/ sessi ons/ over vi ew/ usage/ get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng vi a API sso/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng vi a API sso/ l ogi n/ 1 met hod f r o m [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he st ar t of t he per i od i n quest i on t o [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he end of t he per i od i n quest i on u n i t [ s t r i n g ] ( r e q u i r e d ) onl y ' day' i s suppor t ed f or now J SON d a t a o b j e c t - Al l f i e l d s d e p e n d o n t i me p e r i o d a n d t i me u n i t r ows - ar r ay of t i me uni t s uni t : uni x t i mest amp of st ar t of t he t i me uni t val ue: dur at i on of al l sessi ons i n t hi s t i me uni t ( hh: mm: ss) sessi on_count : number of sessi ons st ar t ed i n t hi s t i me uni t ui d: : : e. com: : mai n t oken: secr et f r om: t o: uni t : day

30 ISL Online Web API Documentation Methods 30 met hod=r epor t / gr oop/ sessi ons/ over vi ew/ usage/ get / 1&he=JSON1 : ui d=: : e. com: : mai n, t oken=secr et, f r om= , t o= , uni t =day met hod=r epor t / gr oop/ sessi ons/ over vi ew/ usage/ get / 1&he=JSON1 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et ", " f r om" : " ", " t o" : " ", " uni t " : " day" } 3.17 report/license/usage/get/1 Returns hosted service license usage for each time unit in requested time period. met hod=r epor t / l i cense/ usage/ get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng vi a API sso/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng vi a API sso/ l ogi n/ 1 met hod f r o m [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he st ar t of t he per i od i n quest i on t o [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he end of t he per i od i n quest i on u n i t [ s t r i n g ] ( r e q u i r e d ) onl y ' day' i s suppor t ed f or now J SON d a t a o b j e c t - Al l f i e l d s d e p e n d o n t i me p e r i o d a n d t i me u n i t r ows - ar r ay of t i me uni t s uni t : uni x t i mest amp of st ar t of t he t i me uni t sessi on_l i ght : number of I SL Li ght sessi ons i n t hi s t i me uni t sessi on_gr oup: number of I SL Gr oop st ar t ed i n t hi s t i me uni t val ue: max. l i cense usage i n t hi s t i me uni t max_connect i ons: max. number of concur r ent connect i ons i n t hi s t i me uni t

31 ISL Online Web API Documentation Methods 31 ui d: : : e. com: : mai n t oken: secr et f r om: t o: uni t : day met hod=r epor t / l i cense/ usage/ get / 1&he=JSON1 : ui d=: : e. com: : mai n, t oken=secr et, f r om= , t o= , uni t =day met hod=r epor t / l i cense/ usage/ get / 1&he=JSON1 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et ", " f r om" : " ", " t o" : " ", " uni t " : " day" } 3.18 report/light/sessions/overview/get/1 Returns general information about ISL Groop usage for a certain time period. met hod=r epor t / l i ght / sessi ons/ over vi ew/ get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod f r o m [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he st ar t of t he per i od i n quest i on t o [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he end of t he per i od i n quest i on

32 ISL Online Web API Documentation Methods 32 J SON d a t a o b j e c t - Al l f i e l d s d e p e n d o n t i me p e r i o d sessi ons_count : number of sessi ons st ar t ed sessi ons_dur at i on: t ot al dur at i on of al l sessi ons ( hh: mm: ss) sessi ons_dat a_t r ansf er ed: t ot al dat a t r af f i c i n al l sessi ons ppu: Pay Per Use used by I SL Li ght sessi ons ( hh: mm: ss) sessi ons_count _ppu: number of sessi ons t hat r equi r ed Pay Per Use sessi ons_dur at i on_mobi l e: t ot al dur at i on of al l sessi ons f r om mobi l e devi ces ( hh: mm: ss) sessi ons_count _by_pl at f or m - ar r ay of key- val ue pai r s: " pl at f or m" : " number _of _sessi ons" sessi ons_count _mobi l e: number of sessi ons st ar t ed f r om mobi l e devi ces sessi ons_count _mobi l e_per cent : per cent age of mobi l e st ar t ed sessi ons sessi ons_dur at i on_aver age: aver age l engt h of a sessi on sessi ons_dur at i on_mobi l e_aver age: aver age l engt h of a mobi l e st ar t ed sessi on sessi ons_count _ppu_per cent : per cent age of sessi ons t hat r equi r ed Pay Per Use ui d: : : e. com: : mai n t oken: secr et f r om: t o: met hod=r epor t / l i ght / sessi ons/ over vi ew/ get / 1&he=JSON1 : ui d=: : e. com: : mai n, t oken=secr et, f r om= , t o= met hod=r epor t / l i ght / sessi ons/ over vi ew/ get / 1&he=JSON1 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et ", " f r om" : " ", " t o" : " " } 3.19 report/light/sessions/overview/usage/get/1 Returns ISL Light usage for each time unit in requested time period.

33 ISL Online Web API Documentation Methods 33 met hod=r epor t / l i ght / sessi ons/ over vi ew/ usage/ get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng i n vi a API sso/ l ogi n/ 1 met hod f r o m [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he st ar t of t he per i od i n quest i on t o [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he end of t he per i od i n quest i on u n i t [ s t r i n g ] ( r e q u i r e d ) onl y ' day' i s suppor t ed f or now J SON d a t a o b j e c t - Al l f i e l d s d e p e n d o n t i me p e r i o d a n d t i me u n i t r ows - ar r ay of uni t s uni t : uni x t i mest amp of st ar t of t he t i me uni t val ue: t ot al dur at i on of al l sessi ons ( hh: mm: ss) sessi on_count : number of sessi ons st ar t ed ui d: : : e. com: : mai n t oken: secr et f r om: t o: uni t : day met hod=r epor t / l i ght / sessi ons/ over vi ew/ usage/ get / 1&he=JSON1 : ui d=: : e. com: : mai n, t oken=secr et, f r om= , t o= , uni t =day met hod=r epor t / l i ght / sessi ons/ over vi ew/ usage/ get / 1&he=JSON1

34 ISL Online Web API Documentation Methods 34 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et ", " f r om" : " ", " t o" : " ", " uni t " : " day" } 3.20 report/ppu/status/get/1 Returns Pay Per Use usage for requested time period. met hod=r epor t / ppu/ st at us/ get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng vi a API sso/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng vi a API sso/ l ogi n/ 1 met hod f r o m [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he st ar t of t he per i od i n quest i on t o [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he end of t he per i od i n quest i on u n i t [ s t r i n g ] ( r e q u i r e d ) onl y ' day' i s suppor t ed f or now J SON d a t a o b j e c t - Al l f i e l d s d e p e n d o n t i me p e r i o d a n d t i me u n i t r ows - ar r ay of uni t s uni t : uni x t i mest amp of st ar t of t he t i me uni t val ue: Pay Per Use usage ( hh: mm: ss) ui d: : : e. com: : mai n t oken: secr et f r om:

35 ISL Online Web API Documentation Methods 35 t o: uni t : day met hod=r epor t / ppu/ st at us/ get / 1&he=JSON1 : ui d=: : e. com: : mai n, t oken=secr et, f r om= , t o= , uni t =day met hod=r epor t / ppu/ st at us/ get / 1&he=JSON1 : j son={ " ui d" : " : : e. com: : mai n", " t oken" : " secr et ", " f r om" : " ", " t o" : " ", " uni t " : " day" } 3.21 report/pronto/chat/overview/get/1 Returns the basic overview of ISL Pronto chats in the requested time period and overview data for each unit. met hod=r epor t / pr ont o/ chat / over vi ew/ get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i cat i on t oken can be acqui r ed by l oggi ng vi a API sso/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) user i d can be acqui r ed by l oggi ng vi a API sso/ l ogi n/ 1 met hod f r o m [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he st ar t of t he per i od i n quest i on t o [ i n t e g e r ] ( r e q u i r e d ) uni x t i mest amp of t he end of t he per i od i n quest i on u n i t [ s t r i n g ] ( r e q u i r e d ) onl y ' day' i s suppor t ed f or now J SON d a t a o b j e c t - Al l f i e l d s d e p e n d o n t i me p e r i o d a n d t i me u n i t r ows - ar r ay of uni t s O2O: st at i st i cs f or Oper at or t o Oper at or chat s uni t : uni x t i mest amp of st ar t of t he t i me uni t dur at i on: t ot al dur at i on of chat s i n t he t i me uni t wai t _t i me: t ot al wai t t i me f or chat s i n t hi s t i me uni t

ISL Online Web API Documentation

ISL Online Web API Documentation ISL Online Web API Documentation ISL Online Web API Documentation Contents 2 Table of Contents Foreword 0 Part I Overview 4 Part II Communication model 5 Part III Methods 7... 1 account/passw ord/change/1

More information

1.- L a m e j o r o p c ió n e s c l o na r e l d i s co ( s e e x p li c a r á d es p u é s ).

1.- L a m e j o r o p c ió n e s c l o na r e l d i s co ( s e e x p li c a r á d es p u é s ). PROCEDIMIENTO DE RECUPERACION Y COPIAS DE SEGURIDAD DEL CORTAFUEGOS LINUX P ar a p od e r re c u p e ra r nu e s t r o c o rt a f u e go s an t e un d es a s t r e ( r ot u r a d e l di s c o o d e l a

More information

How To Use Windows 7 With Virtualization

How To Use Windows 7 With Virtualization Microsoft Virtualization & Management Solutions Steve Deming Partner Solutions Advisor Microsoft US SMB&D Challenges Facing IT An economic downturn exposes execution weakness Robert Youngjohns President,

More information

Put the human back in Human Resources.

Put the human back in Human Resources. Put the human back in Human Resources A Co m p l et e Hu m a n Ca p i t a l Ma n a g em en t So l u t i o n t h a t em p o w er s HR p r o f essi o n a l s t o m eet t h ei r co r p o r a t e o b j ect

More information

Campus Sustainability Assessment and Related Literature

Campus Sustainability Assessment and Related Literature Campus Sustainability Assessment and Related Literature An Annotated Bibliography and Resource Guide Andrew Nixon February 2002 Campus Sustainability Assessment Review Project Telephone: (616) 387-5626

More information

CFA Agree ment No Wi n, No Fee, No Uplift. Payme nt On Concl usi on. The na mes of the parti es to thi s di spute are recor ded as «CaseNa me»

CFA Agree ment No Wi n, No Fee, No Uplift. Payme nt On Concl usi on. The na mes of the parti es to thi s di spute are recor ded as «CaseNa me» «Ctct Na me» «Soli citor Na me» «I nst Addr ess» «I nsttownci ty» «I nst County» «I nstpost Code» «I nst DX» Dat e: «Curr Dat e» Your Ref: «Sol Ref» Our Ref: «CaseNu mber» CFA Agree ment No Wi n, No Fee,

More information

IBM Solution Design Method

IBM Solution Design Method Solution Design Method IBM Solution Design Method Introduction IBM Solution Design Method Introduction: o Objectives o Introduction o Unified Method Architecture 2 Goals and Objectives Goals: Disciplined

More information

ISL Tools 1.0 Manual

ISL Tools 1.0 Manual ISL Tools 1.0 Manual ISL Tools 1.0 Manual Contents 2 Table of Contents Foreword 0 Part I ISL WebStart 3... 1 Introduction 3... 2 Installation 3 Part II ISL Player 5... 1 Introduction 5... 2 How to Start

More information

How to Subnet a Network How to use this paper Absolute Beginner: Read all Sections 1-4 N eed a q uick rev iew : Read Sections 2-4 J ust need a little h elp : Read Section 4 P a r t I : F o r t h e I P

More information

Inform e-commerce Reference Guide

Inform e-commerce Reference Guide Inform e-commerce Reference Guide Logging...2 In Placing an...2 Order Searching for...2 Products Using the Order...3 Pad Reviewing your...4 Shopping Cart Using Saved Shopping...4 Carts Checking Out...5

More information

H ig h L e v e l O v e r v iew. S te p h a n M a rt in. S e n io r S y s te m A rc h i te ct

H ig h L e v e l O v e r v iew. S te p h a n M a rt in. S e n io r S y s te m A rc h i te ct H ig h L e v e l O v e r v iew S te p h a n M a rt in S e n io r S y s te m A rc h i te ct OPEN XCHANGE Architecture Overview A ge nda D es ig n G o als A rc h i te ct u re O ve rv i ew S c a l a b ili

More information

ACE-1/onearm #show service-policy client-vips

ACE-1/onearm #show service-policy client-vips M A C E E x a m Basic Load Balancing Using O ne A r m M ode w it h S ou r ce N A T on t h e C isco A p p licat ion C ont r ol E ngine Goal Configure b a s ic l oa d b a l a nc ing (L a y er 3 ) w h ere

More information

SCHOOL PESTICIDE SAFETY AN D IN TEG R ATED PEST M AN AG EM EN T Statutes put into law by the Louisiana Department of Agriculture & Forestry to ensure the safety and well-being of children and school personnel

More information

RELEASE OF LIABILITY, WAIVER OF CLAIMS, ASSUMPTION OF RISKS AND INDEMNITY AGREEMENT

RELEASE OF LIABILITY, WAIVER OF CLAIMS, ASSUMPTION OF RISKS AND INDEMNITY AGREEMENT RELEASE OF LIABILITY, WAIVER OF CLAIMS, ASSUMPTION OF RISKS AND INDEMNITY AGREEMENT BY SIGNING THIS DOCUMENT, YOU WILL GIVE UP CERTAIN LEGAL RIGHTS, INCLUDING THE RIGHT TO SUE, CLAIM DAMAGES AND SEEK COMPENSATION

More information

CROMERR Made Easier Eric Cleckler, Alabama DEM Greg Mitchell, U.S. EPA

CROMERR Made Easier Eric Cleckler, Alabama DEM Greg Mitchell, U.S. EPA CROMERR Made Easier Eric Cleckler, Alabama DEM Greg Mitchell, U.S. EPA 2015 Exchange Network National Meeting Supporting the Business of Environmental Protection September 29 October 1, 2015 Sheraton Philadelphia

More information

Collaboration in Public H e alth be tw e e n U niv e rs ity of H e id e lbe rg and U niv e rs ity of D ar e s S alaam How t h e c oop e r a t i on e m e r g e d Informal c ont ac t s from e arly 1 9

More information

HB 2517. REFERENCE TI TLE: f i r e a r ms ; s t a t e pr e e mpt i on; pe na l t i e s

HB 2517. REFERENCE TI TLE: f i r e a r ms ; s t a t e pr e e mpt i on; pe na l t i e s REFERENCE TI TLE: f i r e a r ms ; s t a t e pr e e mpt i on; pe na l t i e s St a t e of Ar i z ona Hous e of Re pr e s e nt a t i ve s Fi f t y- f i r s t Le gi s l a t ur e Se c ond Re gul a r Se s

More information

BLADE 12th Generation. Rafał Olszewski. Łukasz Matras

BLADE 12th Generation. Rafał Olszewski. Łukasz Matras BLADE 12th Generation Rafał Olszewski Łukasz Matras Jugowice, 15-11-2012 Gl o b a l M a r k e t i n g Dell PowerEdge M-Series Blade Server Portfolio M-Series Blades couple powerful computing capabilities

More information

Overview of Spellings on www.spellzoo.co.uk

Overview of Spellings on www.spellzoo.co.uk Overview of Spellings on www.spellzoo.co.uk Year 1 Set 1: CVC words Set 2: CVC and CCVC words Set 3: CVC, CCVC and CCVCC words Set 4: Words containing 'ch', 'sh', 'th' and 'wh' Set 5: Words ending in 'll',

More information

Bonn Declaration on Regional Cooperation in Quality Assurance in Higher Education Adopted on 20 June 2007 during the Conference Enhancing Quality Across Borders R egional Cooperation in Quality Assurance

More information

G ri d m on i tori n g w i th N A G I O S (*) (*) Work in collaboration with P. Lo Re, G. S av a and G. T ortone WP3-I CHEP 2000, N F N 10.02.2000 M e e t i n g, N a p l e s, 29.1 1.20 0 2 R o b e r 1

More information

Thuraya XT-LITE Simple. Reliable. Affordable.

Thuraya XT-LITE Simple. Reliable. Affordable. Thuraya XT-LITE Simple. Reliable. Affordable. www.thuraya.com Follow us on /thurayatelecom Stayi n g c on n ec ted has n ever b een thi s eas y. In trodu c i n g T hu raya X T -LIT E, the wo r l d s be

More information

Enterprise Data Center A c h itec tu re Consorzio Operativo Gruppo MPS Case S t u d y : P r o g et t o D i sast er R ec o v er y Milano, 7 Febbraio 2006 1 Il G r u p p o M P S L a B a n c a M o n t e d

More information

Using Predictive Modeling to Reduce Claims Losses in Auto Physical Damage

Using Predictive Modeling to Reduce Claims Losses in Auto Physical Damage Using Predictive Modeling to Reduce Claims Losses in Auto Physical Damage CAS Loss Reserve Seminar 23 Session 3 Private Passenger Automobile Insurance Frank Cacchione Carlos Ariza September 8, 23 Today

More information

I n la n d N a v ig a t io n a co n t r ib u t io n t o eco n o m y su st a i n a b i l i t y

I n la n d N a v ig a t io n a co n t r ib u t io n t o eco n o m y su st a i n a b i l i t y I n la n d N a v ig a t io n a co n t r ib u t io n t o eco n o m y su st a i n a b i l i t y and KB rl iak s iol mi a, hme t a ro cp hm a5 a 2k p0r0o 9f i,e ls hv oa nr t ds eu rmv oedye l o nf dae cr

More information

USSD AND API MANAGEMENT PAVE THE WAY INTOA CONNECTED WORLD. Ruedi ger Kl ei n, Head of Devel opment, di gades GmbH

USSD AND API MANAGEMENT PAVE THE WAY INTOA CONNECTED WORLD. Ruedi ger Kl ei n, Head of Devel opment, di gades GmbH USSD AND API MANAGEMENT PAVE THE WAY INTOA CONNECTED WORLD Ruedi ger Kl ei n, Head of Devel opment, di gades GmbH ri ghts. Controlling Vehicle Components The NewWay 13.09.2013, Fol i e 2 HTTP/REST-API

More information

THE SYNTAX-SEMANTICS INTERFACE

THE SYNTAX-SEMANTICS INTERFACE THE SYNTAX-SEMANTICS INTERFACE ULI SAUERLAND & ARNIM VON STECHOW 1. Syntax and Semantics...2 1.1. Basic Assumptions...3 2. Syntax-Semantics Correspondences...5 2.1. Constituency...6 2.1.1. Predication

More information

SCO TT G LEA SO N D EM O Z G EB R E-

SCO TT G LEA SO N D EM O Z G EB R E- SCO TT G LEA SO N D EM O Z G EB R E- EG Z IA B H ER e d it o r s N ) LICA TIO N S A N D M ETH O D S t DVD N CLUDED C o n t e n Ls Pr e fa c e x v G l o b a l N a v i g a t i o n Sa t e llit e S y s t e

More information

Foreword. 1 How to Login to Your Account 2 Activate Key. Remote Support Remote Access. Web Conference 4 Hosted Service. How to Write Filters

Foreword. 1 How to Login to Your Account 2 Activate Key. Remote Support Remote Access. Web Conference 4 Hosted Service. How to Write Filters Contents 2 Table of Contents Foreword 0 Part I 3... 1 How to Login to Your Account 3... 2 Activate Key 6... 3 Products 7... Remote Support 9... Remote Access 9... Live Chat 9... Web Conference 10... 4

More information

Online Department Stores. What are we searching for?

Online Department Stores. What are we searching for? Online Department Stores What are we searching for? 2 3 CONTENTS Table of contents 02 Table of contents 03 Search 06 Fashion vs. footwear 04 A few key pieces 08 About SimilarWeb Stepping up the Competition

More information

B A R M A G - F R I C T I O N U N I T

B A R M A G - F R I C T I O N U N I T B A R M A G - F R I C T I O N U N I T F R I C T I O N U N I T T P _ 8 MT - B A R - 1 1 0 1 F R I C T I O N U N I T T P _ 7 MT - B A R - 1 1 0 2 TYP E 7 F R I C T I O N G ж V DE MT - B A R - 1 1 0 2 A TYP

More information

operational and regional area.

operational and regional area. PUBLIC WORKS MUTUAL AID,AGREEMENT PROCEDURES GUIDE I. PURPOSE The purpose of this Procedures Guide is to provide parties to the Publ ic Works Agreement with a practical set of guidel ines on how to effectively

More information

FORT WAYNE COMMUNITY SCHOOLS 12 00 SOUTH CLINTON STREET FORT WAYNE, IN 468 02 6:02 p.m. Ma r c h 2 3, 2 015 OFFICIAL P ROCEED ING S Ro l l Ca l l e a r d o f h o o l u e e o f t h e r t y m m u t y h o

More information

I N THE COURT OF APPEALS OF TENNESSEE EASTERN SECTI ON. ) v. ) HON. J OHN A. TURNBULL, ) J UDGE J. ARNOLD FI TZGERALD, ) ) VACATED AND

I N THE COURT OF APPEALS OF TENNESSEE EASTERN SECTI ON. ) v. ) HON. J OHN A. TURNBULL, ) J UDGE J. ARNOLD FI TZGERALD, ) ) VACATED AND I N THE COURT OF APPEALS OF TENNESSEE EASTERN SECTI ON FILED August 16, 1996 LESA HAGER a n d BONNI E LENTS, Cecil Crowson, Jr. ) C/ A N0. 03A01-9601- CV- 00010 Appellate Court Clerk ) Appellants, ) RHEA

More information

M Official Bologna S e m inar Joint d e gr e e s- A H allm ar k of t h e E u r op e an H igh e r E d u cat ion A r e a? R e s u l t s o f q u e s t i o n n a i r e s e n t t o B o l o g n a F o l l o w

More information

3 k t h R e m e A c c e s s b t t t V T T c h t h p V T. Cl ic e ot rad io ut on nex o PN unnel yp e and oose e ap rop riat e PN unnel Int erfac e. 4.

3 k t h R e m e A c c e s s b t t t V T T c h t h p V T. Cl ic e ot rad io ut on nex o PN unnel yp e and oose e ap rop riat e PN unnel Int erfac e. 4. C i s c o P r o f i l e C o n t a c t s & F e e d b a c k H e l p Cisc o SM B Sup p ort Assist ant Configure ASA/PIX as Easy VPN Server or Client H om e > W ork W it h M y Sec urit y D ev ic es > Cisc

More information

R e t r o f i t o f t C i r u n i s g e C o n t r o l

R e t r o f i t o f t C i r u n i s g e C o n t r o l R e t r o f i t o f t C i r u n i s g e C o n t r o l VB Sprinter D e s c r i p t i o n T h i s r e t r o f i t c o n s i s t s o f i n s t a l l i n g a c r u i s e c o n t r o l s wi t c h k i t i n

More information

A Comparison of Jolly Phonics and Jolly Grammar with the Six Phases of Letters and Sounds

A Comparison of Jolly Phonics and Jolly Grammar with the Six Phases of Letters and Sounds A Comparison of Jolly Phonics and Jolly Grammar with the Six Phases of Letters and Sounds Same Letters and Sounds Jolly Phonics Direct, daily, systematic teaching Active multisensory lessons, including

More information

Quick Installation Guide

Quick Installation Guide Packing List Quick Installation Guide FI8918W Quick Installation Guide 1) IP CAMERA X 1 2) Wi-Fi Antenna (only available for wireless model) 3) DC Power Supply X 1 4) Network Cable X 1 5) Mounting bracket

More information

I N THE COURT OF APPEALS OF TENNESSEE EASTERN SECTI ON

I N THE COURT OF APPEALS OF TENNESSEE EASTERN SECTI ON I N THE COURT OF APPEALS OF TENNESSEE EASTERN SECTI ON FILED April 28, 1997 TERRY NORRI S a n d wi f e, ) C/ A NO. 03A01-9611- CV- 00373 Cecil Crowson, Jr. MELI SA NORRI S, ) Appellate Court Clerk ) HAMI

More information

ISL Online Integration Manual

ISL Online Integration Manual Contents 2 Table of Contents Foreword Part I Overview Part II 0 3 4... 1 Dow nload and prepare 4... 2 Enable the ex ternal ID column on ISL Conference Prox y 4... 3 Deploy w eb content 5... 4 Add items

More information

Drive your marketing with Cisco Get more from your SMB marketing with Cisco Marketing Serv ices Quick Reference Guide All co n t e n t s a r e C o p y r i g h t 20 0 8 C i s co S y s t e m s, I n c. All

More information

m Future of learning Zehn J a hr e N et A c a d ei n E r f o l g s p r o g r a m Cisco E x p o 2 0 0 7 2 6. J u n i 2 0 0 7, M e sse W ie n C. D or n in g e r, b m u k k 1/ 12 P r e n t t z d e r p u t

More information

Montessori Academy of Owasso

Montessori Academy of Owasso Montessori Academy of Owasso 5 & 6 Year-Old Curriculum Academic Area: Language Arts Category: Reading: Literature Subcategory: Key Ideas and Details Element 1:With prompting and support, ask and answer

More information

ISL Conference Proxy Manual

ISL Conference Proxy Manual Contents 2 Table of Contents Foreword 0 Part I Introduction 6... 1 Starting products 7... 2 Server requirements 10... 3 Getting started 12... ISL Online account procedures... Create account... Activate

More information

OpenScape Office V3 interaction with Microsoft Small Business Server 2011 Standard

OpenScape Office V3 interaction with Microsoft Small Business Server 2011 Standard Introduction: To give you an overview, what this configuration manual is about, you might first want to know, what benefit the functionality ill gi e ou he ou perfor this o figuratio ithi our OpenScape

More information

Yandex.Translate API Developer's guide

Yandex.Translate API Developer's guide 5.08.2015 .. Version 1.5 Document build date: 5.08.2015. This volume is a part of Yandex technical documentation. Yandex helpdesk site: http://help.yandex.ru 2008 2015 Yandex LLC. All rights reserved.

More information

Progression in each phase for Letters & Sounds:

Progression in each phase for Letters & Sounds: Burford School Marlow Bottom Marlow Buckinghamshire SL7 3PQ T: 01628 486655 F: 01628 898103 E: office@burfordschool.co.uk W: www.burfordschool.co.uk Headteacher: Karol Whittington M.A., B.Ed. Hons Progression

More information

Implementing Data Models and Reports with Microsoft SQL Server 2012

Implementing Data Models and Reports with Microsoft SQL Server 2012 Course 10778A: Implementing Data Models and Reports with Microsoft SQL Server 2012 Course Det ails Co urse Outline M o d ule 1: Intr o d uctio n to Business Intellig ence and Data M o d eling This module

More information

bow bandage candle buildings bulb coins barn cap corn

bow bandage candle buildings bulb coins barn cap corn b c bow bandage candle buildings bulb coins barn cap corn Copyright (C) 1999 Senari Programs Page 1 SoundBox Montessori d f darts dice door dove forest farm film foot fish Copyright (C) 1999 Senari Programs

More information

THE JOINT CONFERENCE COMMITTEE REPORT ON THE CONTINUATION, EXPANSION AND CAPITAL BUDGETS. August 8, 2005. Senate Bill 622

THE JOINT CONFERENCE COMMITTEE REPORT ON THE CONTINUATION, EXPANSION AND CAPITAL BUDGETS. August 8, 2005. Senate Bill 622 THE JOINT CONFERENCE COMMITTEE REPORT ON THE CONTINUATION, EXPANSION AND CAPITAL BUDGETS August 8, 2005 Senate Bill 622 North Carolina General Assembly 2005 Session Table of Contents Budget Reform Statement

More information

Automating Network Monitoring on Experimental Network Testbeds

Automating Network Monitoring on Experimental Network Testbeds Automating Network Monitoring on Experimental Network Testbeds Michael Golightly, Jack Brassil 2011 Hewlett-Packard Development Company, L.P. Problem Experimenters can benefit from additional experimentwide

More information

C o a t i a n P u b l i c D e b tm a n a g e m e n t a n d C h a l l e n g e s o f M a k e t D e v e l o p m e n t Z a g e bo 8 t h A p i l 2 0 1 1 h t t pdd w w wp i j fp h D p u b l i c2 d e b td S t

More information

SEPTEMBER Unit 1 Page Learning Goals 1 Short a 2 b 3-5 blends 6-7 c as in cat 8-11 t 12-13 p

SEPTEMBER Unit 1 Page Learning Goals 1 Short a 2 b 3-5 blends 6-7 c as in cat 8-11 t 12-13 p The McRuffy Kindergarten Reading/Phonics year- long program is divided into 4 units and 180 pages of reading/phonics instruction. Pages and learning goals covered are noted below: SEPTEMBER Unit 1 1 Short

More information

UNIK4250 Security in Distributed Systems University of Oslo Spring 2012. Part 7 Wireless Network Security

UNIK4250 Security in Distributed Systems University of Oslo Spring 2012. Part 7 Wireless Network Security UNIK4250 Security in Distributed Systems University of Oslo Spring 2012 Part 7 Wireless Network Security IEEE 802.11 IEEE 802 committee for LAN standards IEEE 802.11 formed in 1990 s charter to develop

More information

Technology Strategy in Korean Leading Edge Companies - Survey & Interview

Technology Strategy in Korean Leading Edge Companies - Survey & Interview Technology Strategy in Korean Leading Edge Companies - Survey & Interview 2002. 11 Jong Guk SONG and Jung Won LEE (e-mails: jksong@stepi.re.kr ; leejw@stepi.re.kr) Science and Technology Policy Institute

More information

Device I n s t r u m en t a t io n E x a m p l es : I P S L A s & N et F l o w Presented by Emmanuel Tychon Techni cal M ark eti ng Eng i neer TU D resden, J anuary 1 7 th 2 0 0 7 1. C is co I O S I P

More information

Easy CollECt and the transaction ManagEr interface

Easy CollECt and the transaction ManagEr interface Easy Collect and the Transaction Manager Interface Table of Contents 1 2 3 Easy Collect... 4 1.1. Configuring your account for Easy Collect... 4 1.1.1. Creating your Easy Collect ID... 4 1.1.1.1. Transaction

More information

Payor Sheet for Medicare Part D/ PDP and MA-PD

Payor Sheet for Medicare Part D/ PDP and MA-PD Payor Specification Sheet for MEDICARE PART D/PDP AND MA-PD PRIME THERAPEUTICS LLC CLIENTS JANUARY 1, 2006 (Page 1 of 8) BIN: PCN: See BINs on page 2 (in bold red type) See PCNs on page 2 (in bold red

More information

California Treasures Phonics Scope and Sequence K-6

California Treasures Phonics Scope and Sequence K-6 California Treasures Phonics Scope and Sequence K-6 Phonics skills get progressively more complex throughout the grade and year to year (e.g., 1. short vowel CVC words; 2. final e CVCe words; 3. long vowel

More information

A Parents Guide to Understanding. Reading

A Parents Guide to Understanding. Reading A Parents Guide to Understanding Reading Dear Parents, After teaching first grade for many years, I was always faced with the same questions at the beginning of the year: What is Pathways to Reading? How

More information

In English there are 26 letters which represent 44 phonemes. These phonemes are represented by approximately 140 different letter combinations.

In English there are 26 letters which represent 44 phonemes. These phonemes are represented by approximately 140 different letter combinations. PHONIC RULES/PATTERNS, WHICH MAY BE USEFUL AT EACH PHASE OF LETTERS AND SOUNDS NB: These rules are equally relevant to other synthetic phonics programmes In English there are 26 letters which represent

More information

How To Know If You Are A Good Or Bad Person

How To Know If You Are A Good Or Bad Person QuesCom I P -T E L E F O N I E & G S M -G A T E W A Y S Robert Urban D i rec tor I nternati onal S al es Agenda Üb e r Q u e s C o m K u n d e n M a r k t üb e r s i c h t Q u e s c o m Lös u n g Q u e

More information

The World's Most Popular TCL Extension. D. Richard Hipp 16 Annual Tcl/Tk Conference Portland, OR 2009-09-30

The World's Most Popular TCL Extension. D. Richard Hipp 16 Annual Tcl/Tk Conference Portland, OR 2009-09-30 The World's Most Popular TCL Extension D. Richard Hipp 16 Annual Tcl/Tk Conference Portland, OR 2009-09-30 th The only SQL database engine specifically designed to work with TCL SQLite is a TCL Extension

More information

IronPort Gateway Security Products The Leader in Communication Security Reiner Baumann IronPort Systems The Principles of Industry Leadership A n a l y s t L e a d e r s h i p R e c o g n i z e d a s t

More information

The Business Case for D om aink ey s I d ent ified M ail Andy Spillane V ic e P r es ident, Y ah o o! M February 13, 2006 ail 1 Fighting Spam & Email Abuse R eq uir es a M ulti-fac eted Appr o ac h DomainKeys

More information

Workload Management Services. Data Management Services. Networking. Information Service. Fabric Management

Workload Management Services. Data Management Services. Networking. Information Service. Fabric Management The EU D a t a G r i d D a t a M a n a g em en t (EDG release 1.4.x) T h e Eu ro p ean Dat agri d P ro j ec t T eam http://www.e u - d a ta g r i d.o r g DataGrid is a p ro j e c t f u n de d b y th e

More information

SIV for VoiceXM 3.0: a n g u a g e a n d A p p l ica t ion D es ig n C on s id era t ion s Ken Rehor C i s c o S y s t em s, I nc. krehor@cisco.com March 05, 2009 G VoiceXM Application Architecture PSTN

More information

Unit 16 : Software Development Standards O b jec t ive T o p r o v id e a gu ide on ho w t o ac h iev e so f t wa r e p r o cess improvement through the use of software and systems engineering standards.

More information

Cisco Security Agent (CSA) CSA je v í c eúčelo v ý s o f t w a r o v ý ná s t r o j, k t er ý lze p o už í t k v ynuc ení r ů zný c h b ezp ečno s t ní c h p o li t i k. CSA a na lyzuje c h o v á ní a

More information

U S B Pay m e n t P r o c e s s i n g TM

U S B Pay m e n t P r o c e s s i n g TM U S B Pay m e n t P r o c e s s i n g T h a t s S m a r t P r o c e s s i n g TM USB was simple to enroll in. They had competitive rates and all the fees were listed clearly with no surprises. Everyone

More information

1. Oblast rozvoj spolků a SU UK 1.1. Zvyšování kvalifikace Školení Zapojení do projektů Poradenství 1.2. Financování 1.2.1.

1. Oblast rozvoj spolků a SU UK 1.1. Zvyšování kvalifikace Školení Zapojení do projektů Poradenství 1.2. Financování 1.2.1. 1. O b l a s t r o z v o j s p o l k a S U U K 1. 1. Z v y š o v á n í k v a l i f i k a c e Š k o l e n í o S t u d e n t s k á u n i e U n i v e r z i t y K a r l o v y ( d á l e j e n S U U K ) z í

More information

I request the number of people convicted for animal cruelty-related offences in London in:

I request the number of people convicted for animal cruelty-related offences in London in: Freedom of Information Request Reference No: I note you seek access to the following information: I request the number of people convicted for animal cruelty-related offences in London in: A) 2012/2013

More information

Phonics Scope and Sequence Struggling or At Risk Readers. Phonological Awareness and Letter Naming : Early Literacy Kindergarten or first grade 1

Phonics Scope and Sequence Struggling or At Risk Readers. Phonological Awareness and Letter Naming : Early Literacy Kindergarten or first grade 1 Phonics Scope and Sequence Struggling or At Risk Readers Phonological Awareness and Letter Naming : Early Literacy Kindergarten or first grade 1 Phonological Awareness 1. Hearing Rhymes 2. Producing rhymes

More information

Balance of Payments and Foreign Exchange Dynamics SD Macroeconomic Modeling (4)

Balance of Payments and Foreign Exchange Dynamics SD Macroeconomic Modeling (4) Balance of Payments and Foreign Dynamics SD Macroeconomic Modeling () Kaoru Yamaguchi, Ph.D. Doshisha Business School Doshisha University Kyoto 6-858, Japan E-mail: kaoyamag@mail.doshisha.ac.jp Abstract

More information

TSPA Goal Tracking Level System Guide

TSPA Goal Tracking Level System Guide TSPA Goal Tracking Level System Guide Setting Up the TSPA Goal Tracking System, Viewing TSPA Goal Tracking Reports & Report Calculations in Envision Software I Level Goal Tracking System Guide Table of

More information

First A S E M R e c to rs C o n f e re n c e : A sia E u ro p e H ig h e r E d u c a tio n L e a d e rsh ip D ia l o g u e Fre ie U n iv e rsitä t, B e rl in O c to b e r 2 7-2 9 2 0 0 8 G p A G e e a

More information

BMC ITSM Suite - nabité skúsenosťami. Juraj Izák, 13.10.2011

BMC ITSM Suite - nabité skúsenosťami. Juraj Izák, 13.10.2011 BMC ITSM Suite - nabité skúsenosťami Juraj Izák, 13.10.2011 MATERNA GmbH 2011 www.materna.com 1 Presenter Name Function E-mail Telephone Fax Mobile Ing. Juraj Izák Senior Consultant juraj.izak@materna.com

More information

Opis przedmiotu zamówienia - zakres czynności Usługi sprzątania obiektów Gdyńskiego Centrum Sportu

Opis przedmiotu zamówienia - zakres czynności Usługi sprzątania obiektów Gdyńskiego Centrum Sportu O p i s p r z e d m i o t u z a m ó w i e n i a - z a k r e s c z y n n o c i f U s ł u i s p r z» t a n i a o b i e k t ó w G d y s k i e C eo n t r u m S p o r t us I S t a d i o n p i ł k a r s k i

More information

Victims Compensation Claim Status of All Pending Claims and Claims Decided Within the Last Three Years

Victims Compensation Claim Status of All Pending Claims and Claims Decided Within the Last Three Years Claim#:021914-174 Initials: J.T. Last4SSN: 6996 DOB: 5/3/1970 Crime Date: 4/30/2013 Status: Claim is currently under review. Decision expected within 7 days Claim#:041715-334 Initials: M.S. Last4SSN: 2957

More information

My Desires and God s Will

My Desires and God s Will My Desires and God s Will What do you really want? What are the deepest desires of your heart? What do you think or feel God wants of you? How are they the same or different? In what ways are you fulfilling

More information

A a. Cursive Practice. Name: Write the letter on the lines. Write each letter pair. Write each word. Write the sentence twice.

A a. Cursive Practice. Name: Write the letter on the lines. Write each letter pair. Write each word. Write the sentence twice. A A a B B ear ib rake table job cub C C c ca ch cl Cecil could catch a cold. D D d do dl dr od ud David demanded a dirty dog. E E F F G G g go ga gh og ag Ginger gave geese George. H H I I n e t gi li

More information

e Videobewaking ov er I P Marty K n o p e rt 1 A l l m z u l l b t g r u m a k h w k h w k z a l z r E p r m a r k t t c m a r k t Video vision: e vor en va n video en in de na ij e oek om st eb ik en

More information

W Cisco Kompetanse eek end 2 0 0 8 SMB = Store Mu ll ii gg hh eter! Nina Gullerud ng ulleru@ c is c o. c o m 1 Vår E n t e r p r i s e e r f a r i n g... 2 S m å o g M e llo m s t o r e B e d r i f t e

More information

JAVA TECHNOLOGY BEHIND WEB 2.0

JAVA TECHNOLOGY BEHIND WEB 2.0 JAVA TECHNOLOGY BEHIND WEB 2.0 HK Ambassadors Sun Microsystems Inc. http://groups.google.com/group/java-campus-user-group-hk Agenda Introduction RIA Technologies Using AJAX for RIA > jmaki Using JavaFX

More information

UNDERSTANDING FLOW PROCESSING WITHIN THE CISCO ACE M ODULE Application de liv e r y pr odu cts can distr ib u te tr af f ic to applications and w e b se r v ice s u sing v ar y ing le v e ls of application

More information

IntИg r a ti o n d e s s o l u ti o ns IB M e t C i s c o : C o l l a b o r a ti o n e t C o m m u ni c a ti o ns U ni f i Иe s ( U C 2 ) Mathieu in tr at Sales Business ev elop ent anag er om unic at

More information

GENERAL INFORMAT ION:

GENERAL INFORMAT ION: > > >, < > < < _ Pos ta lc od e_ > > > PERFORM ANCE APPRAISAL Employee Name: [Click here

More information

JCUT-3030/6090/1212/1218/1325/1530

JCUT-3030/6090/1212/1218/1325/1530 JCUT CNC ROUTER/CNC WOODWORKING MACHINE JCUT-3030/6090/1212/1218/1325/1530 RZNC-0501 Users Guide Chapter I Characteristic 1. Totally independent from PC platform; 2. Directly read files from U Disk; 3.

More information

Application Note: Cisco A S A - Ce r t if ica t e T o S S L V P N Con n e ct ion P r of il e Overview: T h i s a p p l i ca ti o n n o te e x p l a i n s h o w to co n f i g u r e th e A S A to a cco m

More information

TIME. Orologi con cinturino in pelle. Watches with genuine leather strap. COLLECTION VIENNA 078002 018 VIENNA 078001 017 VIENNA 078000 019.

TIME. Orologi con cinturino in pelle. Watches with genuine leather strap. COLLECTION VIENNA 078002 018 VIENNA 078001 017 VIENNA 078000 019. U n e l e g a n t e s t i l e r e t r ò e d u n design c on tempor an eo c on tr addistin guon o l e due nu ove proposte Ti me Nomi nati on. D u e m o d e l l i c a r a t t e r i zza t i en tr ambi dal

More information

PSTN. Gateway. Switch. Supervisor PC. Ethernet LAN. IPCC Express SERVER. CallManager. IP Phone. IP Phone. Cust- DB

PSTN. Gateway. Switch. Supervisor PC. Ethernet LAN. IPCC Express SERVER. CallManager. IP Phone. IP Phone. Cust- DB M IPCC EXPRESS Product Solution (IPCC - IP Co n t a c t Ce n t e r ) E i n f ü h r u n g Ü b e r h u nd e r t M il l io ne n N u t ze r - P r o g no s e n zu f o l g e w e r d e n e s in d ie s e m J ah

More information

Positioning 40 and 100 GbE in data center inter-sw itch l ink ap p l ications and 40GbE PM D recom m endations Adam Carter, Cisco Al essan dro B arb ieri, Cisco 1 m Data Center inter-s w itc h l ink ap

More information

IBM Poland. Join us. Renata Kuśmider Academic Initiative IBM Polska

IBM Poland. Join us. Renata Kuśmider Academic Initiative IBM Polska IBM Poland. Join us. Renata Kuśmider Academic Initiative IBM Polska What we do Most people think they know what IBM does Sure, we're a technology company. True, we manage large scale IT outsourcing programs

More information

<?xml version="1.0" encoding="utf-8"?> <soapenv:envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"

<?xml version=1.0 encoding=utf-8?> <soapenv:envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/ Applicazioni Java W S con Ax is sistema di tr ac c iab il ità ag r o al imen tar e Ing. Mario G.C.A. Cimino M.G.C.A.Cimino, Applicazioni Java-W S con Ax is, D ipar t ime nt o d i I ng e g ne r ia d e ll

More information

5G ar ch it ect ur e Ch al l en ges an d oppor t u n it ies. Icaro Da Silva @ SEMAFOUR Workshop 2015-08-25

5G ar ch it ect ur e Ch al l en ges an d oppor t u n it ies. Icaro Da Silva @ SEMAFOUR Workshop 2015-08-25 5G ar ch it ect ur e Ch al l en ges an d oppor t u n it ies Icaro Da Silva @ SEMAFOUR Workshop 2015-08-25 t h e 5g ar chit ect ur e summar y 1/2 Support of a diverse range of use cases: M-MTC, C-MTC and

More information

BIO: Dr. Howard S. Glazer

BIO: Dr. Howard S. Glazer BIO: Dr. Howard S. Glazer Dr. Glazer is a Fellow and Past President of the Academy of General Dentistry, and former Assistant Clinical Professor in Dentistry at the Albert Einstein College of Medicine

More information

MAIL1CLICK API - rel 1.35

MAIL1CLICK API - rel 1.35 hqimawhctmslulpnaq//vkauukqmommgqfedthrmvorodqx6oxyvsummkflyntq/ 2vOreTmgl8JsMty6tpoJ5CjkykDGR9mPg79Ggh1BRdSiqSSQR17oudKwi1pJbAmk MFUkoVTtzGEfEAfOV0Pfi1af+ntJawYxOaxmHZvtyG9iojsQjOrA4S+3i4K4lpj4 A/tj7nrDfL47r2cQ83JszWsQVe2CqTLLQz8saXfGoGJILREPFoF/uPS0sg5TyKYJ

More information