christaylorcodes / ConnectWiseManageAPI

PowerShell wrapper for the ConnectWise Manage REST API
MIT License
108 stars 61 forks source link

Error in Get-CWMCompanyTypeAssociation #25

Closed scubes13 closed 2 years ago

scubes13 commented 2 years ago

Line 20 reads as: $Endpoint = "/company/companies/$(parentId)/typeAssociations"

This was breaking. I updated in my local copy as: $Endpoint = "/company/companies/$($parentId)/typeAssociations"

It worked after this change was made.

christaylorcodes commented 2 years ago

6fe056c Updated