Closed scubes13 closed 2 years ago
Line 20 reads as: $Endpoint = "/company/companies/$(parentId)/typeAssociations"
$Endpoint = "/company/companies/$(parentId)/typeAssociations"
This was breaking. I updated in my local copy as: $Endpoint = "/company/companies/$($parentId)/typeAssociations"
$Endpoint = "/company/companies/$($parentId)/typeAssociations"
It worked after this change was made.
6fe056c Updated
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.