Public/Get-VagrantCloudOrganization.ps1
Function Get-VagrantCloudOrganization { <# .SYNOPSIS Retrieves data on an organization. This requires a Vagrant Cloud API Token to use. .DESCRIPTION This is a PowerShell Core wrapper for the Vagrant API. Retrieves data on an organization. .EXAMPLE Get-VagrantCloudOrganization -VagrantCloudToken "a5db113927404aeb84a8aa2fc5ec4d71" Retrieves data on an organization. .INPUTS none .OUTPUTS System.Management.Automation.PSCustomObject .NOTES Author: Steven Jennings <steven@automatingops.com> Github: https://github.com/deyjcode/PSVagrantCloud #> [CmdletBinding()] param( [parameter( Mandatory = $true )] [alias("user")] [string]$VagrantCloudUser ) $TokenName = "VAGRANT_CLOUD_TOKEN" try { $GrabToken = Get-Item "Env:\$TokenName" -ErrorAction SilentlyContinue Write-Verbose "API Token already exists." $VagrantCloudToken = $GrabToken.value } catch { Write-Host "We need to create a Vagrant Cloud Token..." Invoke-VagrantCloudLocalToken $GrabToken = Get-Item "Env:\$TokenName" -ErrorAction SilentlyContinue $VagrantCloudToken = $GrabToken.value } $GrabToken = (Get-Item "Env:\VAGRANT_CLOUD_TOKEN") $VagrantCloudToken = $GrabToken.value $VagrantAPIURI = "https://app.vagrantup.com/api/v1/user/$VagrantCloudUser" $VagrantAPIMethod = "GET" $VagrantCloudHeaders = @{ Authorization = "Bearer $VagrantCloudToken" } try { Invoke-RestMethod -Uri $VagrantAPIURI -Headers $VagrantCloudHeaders -Method $VagrantAPIMethod -ContentType "application/json" } catch { $Exception = $_ Write-Error $Exception } } |