Invoke-PingOne Cmdlet
Searches and updates PingOne data.
Syntax
Invoke-PingOne [parameters]
Remarks
The Invoke-PingOne cmdlet allows you to use SQL statements to execute any SQL statement directly. Below is the syntax for a parameterized query:
$query = Invoke-PingOne -Connection $connection -Query 'SELECT * FROM [CData].[Administrators].Users WHERE Id=@Id' -Params @{'@Id'='39ef9b6f-5973-4701-bd19-7950d4b7d6e0'}
This cmdlet is also useful for executing stored procedures. Use the EXEC keyword to call a stored procedure:
$query = Invoke-PingOne -Connection $connection -Query 'EXEC GetOAuthAuthorizationUrl CallbackUrl = @CallbackUrl' -Params @{"http://localhost:33333"}
To pass multiple Params parameters, use a semicolon (;) as a delimiter. The code below outlines the structure of an EXEC command with two parameters (param1 and param2):
$query = Invoke-PingOne -Connection $connection -Query 'EXEC MyStoredProc Input1=@param1, Input2=@param2' -Params @{'@param1' = 'value1'; '@param2' = 'value2'}