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 36 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: - 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 s on={ " met hod" : " met hod_name", " r es pons e" : { " r es ul t " : { " des c r i pt i on" : " gener at ed des c r i pt i on", " des c r i pt i on_or i g" : " gener at ed non- t r ans l at ed des c r i pt i on", " c ode" : " r es ul t _c ode", " ar gs " : " ar gument _k ey " OR [ " ar r ay ", " of ", " ar gument s " ] }, " dat a" : " v al ue" OR [ " ar r ay ", " of ", " v al ues " ] OR { " r et ur ned" : " v al ue" } } }

6 ISL Online Web API Documentation Communication model 6 XML1 structure: <?x ml v er s i on=" 1. 0" enc odi ng=" ut f - 8"?> <api > <met hod>met hod_ name</ met hod> <r es pons e> <r es ul t > <des c r i pt i on>gener at ed des c r i pt i on</ des c r i pt i on> <c ode>r es ul t _c ode</ c ode> <ar gs >ar r ay </ ar gs > <ar gs >of </ ar gs > <ar gs >ar gument s </ ar gs > </ r es ul t > <dat a>r et ur ned v al ue</ dat a> <dat a>r et ur ned v al ue</ dat a> </ r es pons e> </ api > API Messages A part of response object is result code, which holds one of the predefined values: 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

7 ISL Online Web API Documentation Methods 7 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 s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i ne- ac c ount. php? met hod=ac c ount / pas s wor d/ c hange/ 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 es s : us ampl e. c om ui d: domai n: : us ampl e. c om: : mai n pas s wor d: s ec r et r andom: ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / pas s wor d/ c hange/ 1&he=J SON1 : emai l _addr es s =us ampl e. c om&ui d=domai n: : us ampl e. c om: : mai n&pas s wor d= s ec r et &r andom= ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / pas s wor d/ c hange/ 1&he=J SON1 : j s on={ " emai l _addr es s " : " us ampl e. c om", " ui d" : " domai n: : us ampl e. c om: : mai n", " pas s wor d" : " s ec r et ", " r andom" : " " }

8 ISL Online Web API Documentation Methods 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 s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i ne- ac c ount. php? met hod=ac c ount / hos t ed/ domai n/ s et / 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 c at i on t ok en c an be ac qui r ed by l oggi ng i n v i a API s s o/ l ogi n/ 1 met hod None domai n_name: my domai n ui d: domai n: : us ampl e. c om: : mai n t ok en: s ec r et ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / hos t ed/ domai n/ s et / 1&he=J SON1 : domai n_name=my domai n&ui d=domai n: : us ampl e. c om: : mai n&t ok en=s ec r et ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / pas s wor d/ c hange/ 1&he=J SON1 : j s on={ " domai n_name" : " my domai n", " ui d" : " domai n: : us ampl e. c om: : mai n", " t ok en" : " s ec r 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 es s.

9 ISL Online Web API Documentation Methods 9 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 s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i ne- ac c ount. php? met hod=ac c ount / pas s wor 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 ) None emai l _addr es s : us ampl e. c om ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / pas s wor d/ f or got / 1&he=J SON1 : emai l _addr es s =us ampl e. c om ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / pas s wor d/ f or got / 1&he=J SON1 : j s on={ " emai l _addr es s " : " us ampl e. c om" } 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 s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i ne- ac c ount. php? met hod=ac c ount / s i gnup/ 1

10 ISL Online Web API Documentation Methods 10 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 us er r e s e l l e r I d [ i n t e g e r ] i f no v al ue i s s et, HQ r es el l er i d i s s et a r i d [ i n t e g e r ] l ook at r es el l er I d None us er _name: us ampl e. c om pas s wor d: s ec r et ar i d: or i gi n: { " appcodename" : " Moz i l l a", " appmi nor Ver s i on" : " undef i ned", " appname" : " Net s c ape", " appver s i on" : " 5. 0 ( Wi ndows ) ", " c ook i eenabl ed" : " t r ue", " c pucl as s " : " undef i ned", " onli ne" : " t r ue", " p l at f or m" : " Wi n32", " s y s t emlanguage" : " undef i ned", " us er Agent " : " Moz i l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v : ) Gec k o/ Fi r ef ox / ", " us er Language" : " undef i ned" } ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / s i gnup/ 1&he=J SON1 us er _name=us ampl e. c om, pas s wor d=s ec r et, r es el l er I d=333133, or i gi n= " { \ " appcodename\ " : \ " Moz i l l a\ ", \ " appmi nor Ver s i on\ " : \ " undef i ned\ ", \ " appname \ " : \ " Net s c ape\ ", \ " appver s i on\ " : \ " 5. 0 ( Wi ndows ) \ ", \ " c ook i eenabl ed\ " : \ " t r ue \ ", \ " c pucl as s \ " : \ " undef i ned\ ", \ " onli ne\ " : \ " t r ue\ ", \ " pl at f or m\ " : \ " Wi n32\ ", \ " s y s t emlanguage\ " : \ " undef i ned\ ", \ " us er Agent \ " : \ " Moz i l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v : ) Gec k o/ Fi r ef ox / \ ", \ " us er Language\ " : \ " undef i ned\ " } " ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / s i gnup/ 1&he=J SON1 : j s on={ " us er _name" : " us ampl e. c om", " pas s wor d" : " s ec r et ", " ar i d" : " ", " or i gi n" : " { \ " appcodename\ " : \ " Moz i l l a\ ", \ " appmi nor Ver s i on\ " : \ " undef i ned\ ", \ " appname\ " : \ " Net s c ape\ ", \ " appver s i on\ " : \ " 5. 0 ( Wi ndows ) \ ", \ " c ook i eenabl ed\ " : \ " t r ue\ ", \ " c pucl as s \ " : \ " undef i ned\ ", \ " onli ne\ " : \ " t r ue\ ", \ " pl at f or m\ " : \ " Wi n32\ ", \ " s y s t emlanguage\ " : \ " undef i ned \ ", \ " us er Agent \ " : \ " Moz i l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v : ) Gec k o/ Fi r ef ox / \ ", \ " us er 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.

11 ISL Online Web API Documentation Methods 11 ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i ne- ac c ount. php? met hod=ac c ount / s i gnup/ t wos t 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 es s : us ampl e. c om s t ep: 1 ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / s i gnup/ t wos t ep/ 1&he=J SON1 : us er _name=us ampl e. c om, s t ep=1 ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / s i gnup/ t wos t ep/ 1&he=J SON1 : j s on={ " us er _name" : " us ampl e. c om", " s t ep" : " 1" } St e p 2 : us er _name: us ampl e. c om pas s wor d: s ec r et s t ep: 2 r andom: c ount r y _c ode: ES or i gi n: { " appcodename" : " Moz i l l a", " appmi nor Ver s i on" :

12 ISL Online Web API Documentation Methods 12 " undef i ned", " appname" : " Net s c ape", " appver s i on" : " 5. 0 ( Wi ndows ) ", " c ook i eenabl ed" : " t r ue", " c pucl as s " : " undef i ned", " onli ne" : " t r ue", " p l at f or m" : " Wi n32", " s y s t emlanguage" : " undef i ned", " us er Agent " : " Moz i l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v : ) Gec k o/ Fi r ef ox / ", " us er 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 s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / s i gnup/ t wos t ep/ 1&he=J SON1&us er _name=us er % 40ex ampl e. c om&pas s wor d=s ec r et &s t ep=2&r andom= &c ount r y _c ode=es&c ompan 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 s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / s i gnup/ t wos t ep/ 1&he=J SON1 : us er _name=us ampl e. c om, pas s wor d=s ec r et, s t ep=2, r andom= , c ount r y _c ode=es, or i gi n={ \ " appcodename\ " : \ " Moz i l l a\ ", \ " appmi nor Ver s i on\ " : \ " undef i ned\ ", \ " appname\ " : \ " Net s c ape\ ", \ " appver s i on\ " : \ " 5. 0 ( Wi ndows ) \ ", \ " c ook i eenabl ed\ " : \ " t r ue\ ", \ " c pucl as s \ " : \ " undef i ned\ ", \ " onli ne\ " : \ " t r ue\ ", \ " pl at f or m\ " : \ " Wi n32\ ", \ " s y s t emlanguage\ " : \ " undef i ned \ ", \ " us er Agent \ " : \ " Moz i l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v : ) Gec k o/ Fi r ef ox / \ ", \ " us er Language\ " : \ " undef i ned\ " }, ar i d=333133, c ompany =My Company, f ul l _ name=ful l Name, phone_ number = J SON GET ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / s i gnup/ t wos t ep/ 1&he=J SON1&j s on%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 s l onl i ne. c om/ api / i s l onl i ne- ac c ount / 1-0/ i s l onl i neac c ount. php?met hod=ac c ount / s i gnup/ t wos t ep/ 1&he=J SON1 : j s on={ " us er _name" : " us ampl e. c om", " pas s wor d" : " s ec r et ", " s t ep" : " 2", " r andom" : " ", " c ount r y _c ode" : " ES", " ar i d" : " ", " c ompany " : " My Company ", " f ul l _name" : " Ful l Name", " phone_number " : " ", " or i gi n" : " { \ " appcodename\ " : \ " Moz i l l a \ ", \ " appmi nor Ver s i on\ " : \ " undef i ned\ ", \ " appname\ " : \ " Net s c ape\ ", \ " appver s i on\ " : \ " 5. 0 ( Wi ndows ) \ ", \ " c ook i eenabl ed\ " : \ " t r ue\ ", \ " c pucl as s \ " : \ " undef i ned\ ", \ " onli ne\ " : \ " t r ue\ ", \ " pl at f or m\ " : \ " Wi n32\ ", \ " s y s t emlanguage \ " : \ " undef i ned\ ", \ " us er Agent \ " : \ " Moz i l l a/ 5. 0 ( Wi ndows NT 6. 1; WOW64; r v : ) Gec k o/ Fi r ef ox / \ ", \ " us er Language\ " : \ " undef i ned\ " } " }

13 ISL Online Web API Documentation Methods content/brochure/languages/get/1 Returns available brochure languages and their website paths. ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- c ont ent / 1-0/ i s l onl i ne- c ont ent. php? met hod=c ont ent / br oc hur 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 - k ey - v al ue par, wher e k ey i s l anguage c ode and v al ue i s pat h t o br oc hur e y ear : 2012 ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- c ont ent / 1-0/ i s l onl i nec ont ent. php?met hod=c ont ent / br oc hur e/ l anguages / get / 1&he=J SON1 : y ear =2012 ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- s s o/ 1-0/ i s l onl i ne- s s o. php? met hod=c ont ent / br oc hur e/ l anguages / get / 1&he=J SON1 : j s on={ " y ear " : " 2012" } 3.7 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 s l onl i ne. c om/ api / i s l onl i ne- c ont ent / 1-0/ i s l onl i ne- c ont ent. php? met hod=c ont ent / br oc hur e/ get / 1 y e a r [ i n t e g e r ] ( r e q u i r e d )

14 ISL Online Web API Documentation Methods 14 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 s et t o pr emi um, a pr emi um br oc hur 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 y ear : 2012 ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- c ont ent / 1-0/ i s l onl i nec ont ent. php?met hod=c ont ent / br oc hur e/ get / 1&he=J SON1 : y ear =2012&l anguage=en ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- s s o/ 1-0/ i s l onl i ne- s s o. php? met hod=c ont ent / br oc hur e/ get / 1&he=J SON1 : j s on={ " y ear " : " 2012", " l anguage" : " en" } 3.8 content/resellers/get/1 Returns available brochure languages and their website paths. ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- c ont ent / 1-0/ i s l onl i ne- c ont ent. php? met hod=c ont ent / r es el 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 es el l er wi t h pas s ed 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 s t of r es el l er s f or s pec i f i c c ount r y J SON d a t a o b j e c t r es el l er s s or t ed_name - obj ec t wi t h r es el l er ' s i nf o ar i d - r es el l er ' s I D l abel - r es el l er ' s name c ont ac t _det ai l s - obj ec t wi t h r es el l er ' s c ont ac t det ai l s av ai 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 es el l er s ) : appoi nt ment - appoi nt ed c ount r y name - f ul l r es el l er ' s name

15 ISL Online Web API Documentation Methods 15 hr ef - r es el l er ' s web s i t e f ul l _addr es s - r es el l er ' s addr es s emai l - r es el l er ' s c ont ac t emai l addr es s t el ephone - r es el l er ' s phone number t el ef ax - r es el l er ' s t el ef ax number v at _i d - r es el l er ' s VAT number s el ec t ed - i f r es el l er s houl d be pr es el l ec t ed c ount r y _c ode: US ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- c ont ent / 1-0/ i s l onl i nec ont ent. php?met hod=c ont ent / r es el l er s / get / 1&he=J SON1 : c ount r y _c ode=us ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- s s o/ 1-0/ i s l onl i ne- s s o. php? met hod=c ont ent / r es el l er s / get / 1&he=J SON1 : j s on={ " c ount r y _c ode" : " 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 s l onl i ne. c om/ api / i s l onl i ne- c ont ent / 1-0/ i s l onl i ne- c ont ent. php? met hod=c ont ent / s hop/ 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 ) c ount r y c ode s houl d be i n t he f or m of upper c as ed t wo l et t er c ode ( I SO al pha- 2). The r es ul t wi l l be c ount r y s pec i f i c ( c ur r enc y, pr i c es,... ) 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 c es wi t hout dec i mal pl ac es i s r equi r ed t hi s s houl d be s et t o t r ue. Def aul t v al ue i s f al s e J SON d a t a o b j e c t c ur r enc y _s y mbol - c ount r y ' s c ur r enc y c ode c ur r enc y _s y mbol _i n_f r ont - i f i s s et t o t r ue, t he c ur r enc y c ode i s wr i t t en bef or e t he pr i c e c ur r enc y _dec i mal - c har ac t er us ed t o s eper at e dec i mal pl ac es c ur r enc y _di gi t _gr oupi ng_s y mbol - c har ac t er us ed t o t hous ands, mi l l i ons et c. c ur r enc y _di gi t s _af t er _dec i mal - how many dec i mal pl ac es pr i c e s houl d

16 ISL Online Web API Documentation Methods 16 hav e i t ems i t em_c ode - s hop i t em c ode det ai l ed_des c r i pt i on - i t em' s l ong des c r i pt i on s hor t _des c r i pt i on - i t em' s s hor t des c r i pt i on f i l t er - t o whi c h gr oup i t em bel ongs s k u - i t em' s SKU c ode pr i c e_numer i c - pr i c e i n t he f or m of number pr i c e_di s pl ay - pr i c e f or mat ed f or di s pl ay quant i t y _par ams - det ai l s about quant i t y, dur at i on, di s c ount s et c. c ount r y _c ode: US ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- c ont ent / 1-0/ i s l onl i nec ont ent. php?met hod=c ont ent / s hop/ i t ems / get / 1&he=J SON1 : c ount r y _c ode=us ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- s s o/ 1-0/ i s l onl i ne- s s o. php? met hod=c ont ent / s hop/ i t ems / get / 1&he=J SON1 : j s on={ " c ount r y _c ode" : " US" } 3.10 localization/translation/resources/get/1 Returns list of all resources and their translation/localization status. ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- l oc al i z at i on/ 1-0/ i s l onl i nel oc al i z at i on. php?met hod=l oc al i z at i on/ t r ans l at i on/ r es our c es / get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i c at i on t ok en c an be ac qui r ed by l oggi ng i n v i a API s s o/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) us er i d c an be ac qui r ed by l oggi ng i n v i a API s s o/ 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 c ode pr ov i ded t o y ou 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 c ode; t hi s def i nes l oc al i z at i on l anguage o f f s e t [ i n t e g e r ] of f s et 100 means t hat r es ul t s wi l l be s hown f r om 100t h r es ul t on l i mi t [ i n t e g e r ] how many r es ul t s ar e s hown i n r es pons e; max i 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 es ul t s s houl d be s or t ed; f i r s t v al ue s houl d be f i el d name, s ec ond s houl d be s or t di r ec t i on; i f mul t i pl e s or t f i el ds ar e pas s ed, t hey wi l l be par s ed i n or der i n whi c h t hey r es i de i n ar r ay ( FI FO) Suppor t ed f i el ds :

17 ISL Online Web API Documentation Methods 17 r es our c e_i d pr ogr am_name c ont ex t t r ans l at abl e_s t r i ngs unt r ans l at ed_s t r i ngs wor d_c ount Suppor t ed di r ec t i ons : ASC - f or as c endi ng DESC - f or des c endi 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 es ul t s s houl d be f i l t er ed; f i r s t v al ue s houl d be f i el d name, s ec ond s houl d be f i el d v al ue; i f mul t i pl e f i el ds ar e pas s ed AND l ogi c al oper at or wi l l be put bet ween t hem Suppor t ed f i el ds : modul e_name [ s t r i ng] - ex ec ut es c as e i ns ens i t i v e l ef t and r i ght s ear c h ( SL wi l l mat c h al s o I SL Onl i ne) pr ogr am_name [ s t r i ng] - ex ec ut es c as e i ns ens i t i v e l ef t and r i ght s ear c h ( SL wi l l mat c h al s o I SL Onl i ne) c ont ex t [ s t r i ng] - ex ec ut es c as e i ns ens i t i v e l ef t and r i ght s ear c h ( SL wi l l mat c h al s o I SL Onl i ne) pl ugi n_name [ s t r i ng] - ex ec ut es c as e i ns ens i t i v e l ef t and r i ght s ear c h ( SL wi l l mat c h al s o I SL Onl i ne) t r ans l at i on_v er s i on [ s t r i ng] - ex ec ut es ex ac t s ear c h ( 1. 1 wi l l not mat c h , but onl y 1. 1, al s o 1. 1A wi l l not mat c h 1. 1a) t r ans l at ed [ bool ean] - i f t r ans l at ed i s s et t o t r ue onl y r es our c es f ul l y t r ans l at ed wi l l be s hown J SON d a t a o b j e c t r es our c es - ar r ay of r es our c es av ai l abl e f or t r ans l at i on r es our c e_i d: i d of r es our c e modul e_name: t o whi c h modul e t r ans l at i on r ef er s pr ogr am_name: t o whi c h pr ogr am t r ans l at i on r ef er s c ont ex t : t o whi c h c ont ex t t r ans l at i on i s r el at ed pl ugi n_name: t o whi c h pl ugi n t r ans l at i on r ef er s t r ans l at i on_v er s i on: t r ans l at i on v er s i on t r ans l at abl e_s t r i ngs : number of s t r i ngs t hat c an be t r ans l at ed unt r ans l at ed_s t r i ngs : number of unt r ans l at ed s t r i ngs wor d_c ount : number of wor ds t hat c an be t r ans l at ed EXAMPLE 1 ui d: : : us ampl e. c om: : mai n t ok en: s ec r et par t ner _c ode: par t ner - c ode l anguage_ c ode: es of f s et : 6 l i mi t : 3 ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- l oc al i z at i on/ 1-0/ i s l onl i nel oc al i z at i on. php?met hod=l oc al i z at i on/ t r ans l at i on/ r es our c es / get / 1&he=J SON1 : ui d=: : us ampl e. c om: : mai n, t ok en=s ec r et, par t ner _c ode=par t ner - c ode, l anguage_c ode=es, of f s et =6, l i mi t =3

18 ISL Online Web API Documentation Methods 18 ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- l oc al i z at i on/ 1-0/ i s l onl i nel oc al i z at i on. php?met hod=l oc al i z at i on/ t r ans l at i on/ r es our c es / get / 1&he=J SON1 : j s on={ " ui d" : " : : us ampl e. c om: : mai n", " t ok en" : " s ec r et ", " par t ner _c ode" : " par t ner - c ode", " l anguage_c ode" : " es ", " of f s et " : " 6", " l i mi t " : " 3" } EXAMPLE 2: When us i ng s or t or f i l t er par amet er s, J SON GET or met hod mus t be us ed! ui d: : : us ampl e. c om: : mai n t ok en: s ec r et par t ner _c ode: par t ner - c ode l anguage_ c ode: es of f s et : 6 l i mi t : 3 s or t : r es our c e_i d=asc f i l t er : pr ogr am_name=l i ght, t r ans l at ed=f al s e, t r ans l at i on_v er s i on=1 ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- l oc al i z at i on/ 1-0/ i s l onl i nel oc al i z at i on. php?met hod=l oc al i z at i on/ t r ans l at i on/ r es our c es / get / 1&he=J SON1 : j s on={ " ui d" : " : : us ampl e. c om: : mai n", " t ok en" : " s ec r et ", " par t ner _c ode" : " par t ner - c ode", " l anguage_c ode" : " es ", " of f s et " : " 6", " l i mi t " : " 3", " s or t " : { " r es our c e_i d" : " ASC" }, " f i l t er " : { " pr ogr am_name" : " l i ght ", " t r ans l at ed" : " f al s e", " t r ans l at i on_v er s i 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 s l onl i ne. c om/ api / i s l onl i ne- l oc al i z at i on/ 1-0/ i s l onl i nel oc al i z at i on. php?met hod=l oc al i z at i on/ t r ans l at i on/ s i ngl e/ get / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i c at i on t ok en c an be ac qui r ed by l oggi ng i n v i a API s s o/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) us er i d c an be ac qui r ed by l oggi ng i n v i a API s s o/ 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 c ode pr ov i ded t o y ou 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 c ode; t hi s def i nes l oc al i z at i on l anguage r e s o u r c e _ i d [ i n t e g e r ] r es our c e i d, whi c h c an be obt ai ned by c al l i ng l oc al i z at i on/ t r ans l at i on/ r es our c es / get / 1 met hod J SON d a t a o b j e c t t r ans l at i ons - ar r ay of t r ans l at i on s t r i ngs r es our c e_i d: i d of r es our c e

19 ISL Online Web API Documentation Methods 19 l anguage_c ode: t o whi c h l anguage t r ans l at i ons r ef er t r ans l at i ons : ar r ay of t r ans l at i ons s t r i ngs or i gi nal _t ex t : t ex t ex pos ed f or t r ans l at i on t r ans l at ed_t ex t : c ur r ent t r ans l at i on of or i gi nal t ex t ui d: : : us ampl e. c om: : mai n t ok en: s ec r et par t ner _c ode: par t ner - c ode l anguage_ c ode: es r es our c e_i d: 108 ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- l oc al i z at i on/ 1-0/ i s l onl i nel oc al i z at i on. php?met hod=l oc al i z at i on/ t r ans l at i on/ s i ngl e/ get / 1&he=J SON1 : ui d=: : us ampl e. c om: : mai n, t ok en=s ec r et, par t ner _c ode=par t ner - c ode, l anguage_c ode=es, r es our c e_i d=108 ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- l oc al i z at i on/ 1-0/ i s l onl i nel oc al i z at i on. php?met hod=l oc al i z at i on/ t r ans l at i on/ s i ngl e/ get / 1&he=J SON1 : j s on={ " ui d" : " : : us ampl e. c om: : mai n", " t ok en" : " s ec r et ", " par t ner _c ode" : " par t ner - c ode", " l anguage_c ode" : " es ", " r es our c e_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 s l onl i ne. c om/ api / i s l onl i ne- l oc al i z at i on/ 1-0/ i s l onl i nel oc al i z at i on. php?met hod=l oc al i z at i on/ t r ans l at i on/ s i ngl e/ i ns er t / 1 t o k e n [ s t r i n g ] ( r e q u i r e d ) aut hent i c at i on t ok en c an be ac qui r ed by l oggi ng i n v i a API s s o/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) us er i d c an be ac qui r ed by l oggi ng i n v i a API s s o/ 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 c ode pr ov i ded t o y ou 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 c ode; t hi s def i nes l oc al i z at i on l anguage r e s o u r c e _ i d [ i n t e g e r ] r es our c e i d, whi c h c an be obt ai ned by c al l i ng l oc al i z at i on/ t r ans l at i on/ r es our c es / 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 ex t, whi c h c an be obt ai ned by c al l i ng l oc al i z at i on/ t r ans l at i on/ s i 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 ans l at i on t ex t ; c ur r ent t r ans l at i on t ex t c an be obt ai ned by c al l i ng l oc al i z at i on/

20 ISL Online Web API Documentation Methods 20 t r ans l at i on/ s i ngl e/ get / 1 met hod J SON d a t a o b j e c t t r ans l at i on - i nf or mat i on about what was updat ed r es our c e_i d: i d of r es our c e l anguage_c ode: t o whi c h l anguage t r ans l at i ons r ef er or i gi nal _t ex t : t ex t t hat was t r ans l at ed t r ans l at ed_t ex t : new t r ans l at i on t ex t ui d: : : us ampl e. c om: : mai n t ok en: s ec r et par t ner _c ode: par t ner - c ode l anguage_ c ode: es r es our c e_i d: 108 or i gi nal _t ex t : Admi n mode t r ans l at ed_t ex t : Admi ni s t r at i v e mode ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- l oc al i z at i on/ 1-0/ i s l onl i nel oc al i z at i on. php?met hod=l oc al i z at i on/ t r ans l at i on/ s i ngl e/ i ns er t / 1&he=J SON1 : ui d=: : us ampl e. c om: : mai n, t ok en=s ec r et, par t ner _c ode=par t ner - c ode, l anguage_c ode=es, r es our c e_i d=108, or i gi nal _t ex t =Admi n mode, t r ans l at ed_t ex t =Admi ni s t r at i v e mode ht t ps : / / www. i s l onl i ne. c om/ api / i s l onl i ne- l oc al i z at i on/ 1-0/ i s l onl i nel oc al i z at i on. php?met hod=l oc al i z at i on/ t r ans l at i on/ s i ngl e/ i ns er t / 1&he=J SON1 : j s on={ " ui d" : " : : us ampl e. c om: : mai n", " t ok en" : " s ec r et ", " par t ner _c ode" : " par t ner - c ode", " l anguage_c ode" : " es ", " r es our c e_i d" : " 108", " or i gi nal _t ex t " : " Admi n mode", " t r ans l at ed_t ex t " : " Admi ni s t r at i v e mode" } 3.13 report/accounthistory/status/get/1 Returns account's subscription status. met hod=r epor t / ac c ount hi s t or y / s t 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 c at i on t ok en c an be ac qui r ed by l oggi ng i n v i a API s s o/ l ogi n/ 1 met hod u i d [ s t r i n g ] ( r e q u i r e d ) us er i d c an be ac qui r ed by l oggi ng i n v i a API s s o/ l ogi n/ 1 met hod

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 8... 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Page 1 of 97. PADS System Management

Page 1 of 97. PADS System Management Page 1 of 97 PADS System Management Welcome to PADS System Management Welcome to PADS, one of the most advanced and complete digital signage software packages that are available today. This PADS System

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

GENERAL INFORMAT ION:

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

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

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

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

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

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

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

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

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

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

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 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...

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

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

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

CUSTOMER INFORMATION SECURITY AWARENESS TRAINING

CUSTOMER INFORMATION SECURITY AWARENESS TRAINING CUSTOMER INFORMATION SECURITY AWARENESS TRAINING IN T RO DUCT ION T h i s c o u r s e i s d e s i g n e d to p r o v i d e yo u w i t h t h e k n o w l e d g e to p r o t e c t y o u r p e r s o n a l

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

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

1 IEFE, Università Bocconi, susanna.dorigoni@unibocconi.it. 2 IEFE, Università Bocconi, sergio.portatadino@unibocconi.it

1 IEFE, Università Bocconi, susanna.dorigoni@unibocconi.it. 2 IEFE, Università Bocconi, sergio.portatadino@unibocconi.it LNG development across Europe: infrastructural and reg ulatory analy sis by Susanna Dorigoni 1 and Se rgio P ort at ad ino 2 A B S T R A C T I n t h i s p a p e r a c r o s s -s e c t i o n i n f r a s

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

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

1 H e r i t a g e L a n g u a g e P r o g r a m f o r S p a n i s h S p e a k e r s N o r t h C a r o l i n a M o d e l / C h a r l o t t e -M e c k l e n b u r g S c h o o l s ( C M S ) C o n t a c t

More information

How-To Guide SAP Cloud for Customer Document Version: 2.0-2015-10-06. How to Perform Initial Load of data from SAP ERP to SAP Cloud for Customer

How-To Guide SAP Cloud for Customer Document Version: 2.0-2015-10-06. How to Perform Initial Load of data from SAP ERP to SAP Cloud for Customer How-To Guide SAP Cloud for Customer Document Version: 2.0-2015-10-06 How to Perform Initial Load of data from SAP ERP to SAP Cloud for Customer Document History Document Version Description 1.0 First official

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

III Bienal de Autismo Página 1 / 43

III Bienal de Autismo Página 1 / 43 III Bienal de Autismo Página 1 / 43 A Direcção da APPDA N ort e dá -v os as B oas V in das à I I I B ien al de Au t is m q u e es t a corres p on da à s v os s as ex p ect at iv as com o t em a em deb

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

WHMCS Integration Manual

WHMCS Integration Manual WHMCS Integration Manual Manual for installing and configuring WHMCS module 1. Introduction BackupAgent has integrated its service as a module into WHMCS v5 and higher. Service Providers who use WHMCS

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

CREATE SHAPE VISUALIZE

CREATE SHAPE VISUALIZE SHAPE VISUALIZE B I M E q u i t y BIM Workflow Guide SHAPE VISUALIZE Introduction We o e to t e r t ook i t e BIM Workflow erie I t e o owi ter we wi o er e eryt i eeded or you to ter t e i o re ti i d

More information

Table of Contents. Part I Welcome. Part II Requirements / Installation. Part III File System Tools. Part IV Monitoring Tools. Part V Network Tools

Table of Contents. Part I Welcome. Part II Requirements / Installation. Part III File System Tools. Part IV Monitoring Tools. Part V Network Tools Contents I Table of Contents Part I Welcome 4 Part II Requirements / Installation 4 Part III File System Tools 5 1 adslist... 5... 5 2 checksum... 6... 7 3 directorymonitor... 7... 8 4 directorysize...

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

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

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

SECURE E-MAIL USER GUIDE FOR EXTERNAL PARTNERS

SECURE E-MAIL USER GUIDE FOR EXTERNAL PARTNERS SECURE E-MAIL USER GUIDE FOR EXTERNAL PARTNERS A guide for using encrypted electronic mail to protect the privacy and data integrity of sensitive information. August 2014 Data Classification: Public Information

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

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

O s OAM Requirements for 40/100 GE Eth ernet AI S? Gary Nicholl C is co S ys t e m I E E E 8 0 2. 3 b a T as k F orce M arch 1 8, 2 0 0 8 rlan d o, F L 1 O O O O Background E t h e r n e t i s r a p i

More information

SAP Cloud Identity Service Document Version: 1.0 2014-09-01. SAP Cloud Identity Service

SAP Cloud Identity Service Document Version: 1.0 2014-09-01. SAP Cloud Identity Service Document Version: 1.0 2014-09-01 Content 1....4 1.1 Release s....4 1.2 Product Overview....8 Product Details.... 9 Supported Browser Versions....10 Supported Languages....12 1.3 Getting Started....13 1.4

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

SNMP Test er Manual 2015 Paessler AG

SNMP Test er Manual 2015 Paessler AG SNMP Test er Manual 2015 Paessler AG All rights reserved. No parts of this work may be reproduced in any form or by any means graphic, electronic, or mechanical, including photocopying, recording, taping,

More information

Foreword. 1 How it w orks 2 Getting started Sign up - Create account Add a new computer. Install ISL AlwaysOn Send Remote Computer Invite

Foreword. 1 How it w orks 2 Getting started Sign up - Create account Add a new computer. Install ISL AlwaysOn Send Remote Computer Invite Contents 2 Table of Contents Foreword 0 Part I Introduction 4... 1 How it w orks 4... 2 Getting started 5... Sign up - Create account 5... Add a new computer 9... Login 10... Install ISL AlwaysOn 11...

More information

MAIL1CLICK API - rel 1.35

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

More information

Human Translation Server

Human Translation Server Human Translation Server What is HTS Key benefits Costs Getting started Quote Confirmation Delivery Testing environment FAQ Functions reference Request a quotation Confirm the order Getting project status

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

LEADING TECHNOLOGICAL INNOVATION & PRODUCTIVITY IMPROVEMENT ACROSS THE SUPPLY CHAIN

LEADING TECHNOLOGICAL INNOVATION & PRODUCTIVITY IMPROVEMENT ACROSS THE SUPPLY CHAIN LEADING TECHNOLOGICAL INNOVATION & PRODUCTIVITY IMPROVEMENT ACROSS THE SUPPLY CHAIN AN EVALUATION OF THE ALC INTERMODAL VISIBILITY PILOT OF THE GS1 ELECTRONIC PRODUCT CODE INFORMATION SERVICE (EPCIS) STANDARD

More information

Mac OS X Secure Wireless Setup Guide

Mac OS X Secure Wireless Setup Guide Mac OS X Secure Wireless Setup Guide Requirements: Apple computer with built-in AirPort card capable of WPA2-Enterprise encryption Mac OS X Snow Leopard version 10.6.0 or greater or Mac OS X Lion version

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

07/04/2014 NOBIL API. Version 3.0. Skåland Webservice Side 1 / 16

07/04/2014 NOBIL API. Version 3.0. Skåland Webservice Side 1 / 16 NOBIL API Version 3.0 Skåland Webservice Side 1 / 16 Client API version 3.0 NOBIL is a comprehensive and trustworthy database covering all charging stations in Norway, and is open for other countries,

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

LASIK - P u b l i c a t i o n s b y D r. G u l a n i A r u n C. G u l a n i, M. D., M. S. Director: Gulani Vision Institute F orm er C h ief : C or nea, E x ter nal D isease & L aser -R ef r ac tiv e S

More information

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every

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

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

HireDesk API V1.0 Developer s Guide

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

More information

BroadSoft BroadWorks ver. 17 SIP Configuration Guide

BroadSoft BroadWorks ver. 17 SIP Configuration Guide Valcom Session Initiation Protocol (SIP) VIP devices are compatible with BroadSoft s BroadWorks hosted SIP server. The Valcom device is defined as a Generic SIP Phone in the BroadWorks system. Authentication

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

Legal Notes. Regarding Trademarks. 2011 KYOCERA MITA Corporation

Legal Notes. Regarding Trademarks. 2011 KYOCERA MITA Corporation Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

grow scouting s impact.

grow scouting s impact. grow scouting s impct. 20 16 Fmi ly F r ien d s of S c o u t i ng U ni t C h i r m n G u i debook Cr o s s r o d s o f Americ Council, Boy Scouts of Americ this isn t your fr s scout progrm. sure we like

More information

Installation Guide Magento Localized Editions

Installation Guide Magento Localized Editions Installation Guide Magento Localized Editions Content Content Existing Localized Magento Editions System Installation preparations Installation of the Localized Magento Edition Step 1 - Introduction to

More information

INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR. User Guide for the RightFax Fax Service. Web Utility

INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR. User Guide for the RightFax Fax Service. Web Utility INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR User Guide for the RightFax Fax Service Web Utility August 2011 CONTENTS 1. Accessing the Web Utility 2. Change Password 3. Web Utility:

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

STRATEGIC PLANNING REPORTS MANUAL

STRATEGIC PLANNING REPORTS MANUAL STRATEGIC PLANNING REPORTS MANUAL How to submit reports using the TTU Strategic Planning Report TracDat/SharePoint (TSO) Site CONTACT: The Office of Planning and Assessment (806) 742-1505 Updated March

More information

Commerce Services Documentation

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

More information