Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 570 Bytes

File metadata and controls

21 lines (13 loc) · 570 Bytes

Quickstart guide to connecting to the Zorus API.

Step 1) Review Zorus documentation - https://support.zorustech.com/api-quickstart

Step 2) Generate an API key as documented.

Use the following script to set everyting up:

Install-Module -name ZorusAPI
Import-Module -name ZorusAPI

$APIKey='<api key>'
Set-ZorusAPIKey $APIKey

$BaseURL='https://developer.zorustech.com' # Optional - Can be omitted.
Set-ZorusBaseURL $BaseURL # Optional - Can be omitted.


# Sample command and output.
$Customers=Get-ZorusCustomer
$Customers