Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
ecc-tool
0.1.20
Public/Invoke-SfCreateObject.ps1
function
Invoke-SfCreateObject
{
param
(
[String]
$name
,
[PSObject]
$object
)
Invoke-SfApi
"/sobjects/$($name)/"
-Method
Post
-Body
(
$object
|
ConvertTo-Json
-Depth
100
)
}