/barium-powershell

PowerShell module to communicate with Barium Live API.

Primary LanguagePowerShell

Barium Live PowerShell integration

PowerShell module to integrate with Barium Live API.

Requirements

  • PowerShell 3.0

Functions

Function Description
Get-BariumToken Post login details to authenticate user
Get-BariumList Get all lists
Get-BariumObject Get information about objects, such as forms, files and folders
Edit-BariumObject Edit information about objects, such as forms, files and folders

Example

Use the Barium module

Import-Module .\Barium.psm1

$settings  =  @{
    Uri  =  'https://live.barium.se/api/v1.0'
}

Create authentication and recive a token

$token = Get-BariumToken -Uri $settings.Uri -UserName 'uu@domain.se' -ApiKey '2a699363-f2b7-4ebf-8fe1-82b9ab7062bf' -Password 'pw1'

Fetch list

If the '-Data' parameter is set, all data will be displayed. Otherwise, it's just the list.

$list = Get-BariumList -Uri $settings.Uri -Token $token -List 'd4463ae9-a50a-49ab-9160-80c60637c78d' -Data

Or you can use this row to fetch all lists.

$list = Get-BariumList -Uri $settings.Uri -Token $token

Get listobjects from the selected list

$object = Get-BariumObject -Uri $settings.Uri -Token $token -List $list.'form.formId'

Select All 'Names' and 'Values'

$object.Data | Select-Object Name, Value

This will return the current values, etc samAccountName: user1 from the list.

Update 'SamAccountName' and 'Password' to Barium

$values = @{
    samAccountName = 'USX1'
    Password = 'Random'
}

This item above updates 'samAccountName' and 'Password' with new values.

Edit-BariumObject -Uri $settings.Uri -Token $token -List $list.'form.formId' -Values $values