Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mojoaar/liquidplanner-powershell
This PowerShell module provides a series of cmdlets for interacting with the Liquid Planner API
https://github.com/mojoaar/liquidplanner-powershell
api liquidplanner powershell powershell-module powershell-modules
Last synced: about 1 month ago
JSON representation
This PowerShell module provides a series of cmdlets for interacting with the Liquid Planner API
- Host: GitHub
- URL: https://github.com/mojoaar/liquidplanner-powershell
- Owner: mojoaar
- License: gpl-3.0
- Created: 2017-06-21T13:39:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-16T06:47:42.000Z (over 7 years ago)
- Last Synced: 2024-11-06T20:07:21.466Z (3 months ago)
- Topics: api, liquidplanner, powershell, powershell-module, powershell-modules
- Language: PowerShell
- Homepage:
- Size: 45.9 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PSLiquidPlanner
This PowerShell module provides a series of cmdlets for interacting with the [Liquid Planner API](https://www.liquidplanner.com/support/articles/developer-tools/). Invoke-RestMethod is used for all API calls.## Requirements
Requires PowerShell 3.0 or above (this is when `Invoke-RestMethod` was introduced).## Usage
Download the [latest release](https://github.com/mgjohansen/liquidplanner-powershell/releases/latest) and extract the .psm1 and .psd1 files to your PowerShell profile directory (i.e. the `Modules` directory under wherever `$profile` points to in your PS console) and run:
`Import-Module PSLiquidPlanner`
Once you've done this, all the cmdlets will be at your disposal, you can see a full list using `Get-Command -Module PSLiquidPlanner`. Remember to run Set-LiquidPlannerAuthToken & Set-LiquidPlannerWorkspace before beginning to work in your environment.## Cmdlets
* Add-LiquidPlanerTaskComment
* Add-LiquidPlannerTaskLink
* Get-LiquidPlannerActivity
* Get-LiquidPlannerClient
* Get-LiquidPlannerMember
* Get-LiquidPlannerProject
* Get-LiquidPlannerTask
* Get-LiquidPlannerWorkspace
* New-LiquidPlannerProject
* New-LiquidPlannerTask
* Remove-LiquidPlannerEnvironment
* Set-LiquidPlannerAuth
* Set-LiquidPlannerAuthToken
* Set-LiquidPlannerWorkspace
* Test-LiquidPlannerAuthIsSet
* Test-LiquidPlannerEnvironment
* Test-LiquidPlannerWorkspaceIdIsSet## Author
Author: Morten G. Johansen () // [Twitter](https://twitter.com/mgjohansen)