soc/api/v1/customproperties/Get-CustomProperty.ps1

function Get-CustomProperty
{
    param(
        [Parameter(Mandatory)]
        [string] $CustomPropertyId
    )

    return Invoke-Api Get "/soc/api/v1/customproperties/$CustomPropertyId"
}