public/Get-FootballFixtureGoalScorer.ps1
function Get-FootballFixtureGoalScorer { <# .EXAMPLE Get-FootballFixtureGoalScorer -Header $Headers -Token $Token -Competition jpn-jleague -Date 2025-02-26 -Path C:\sportsmonk #> [CmdletBinding()] param( [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [string]$Competition, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [string]$Date, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [Object]$Header, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [string]$Path, [Parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [string]$Token ) process{ $ErrorActionPreference = 'Stop' try { $PathToResults = "$Path\sportsmonk-results\$Competition\$Date\$Competition-$Date.csv" $PathToResultsExists = Test-Path -Path $PathToResults if ($PathToResultsExists) { $FixtureResults = Import-Csv -Path $PathToResults foreach ($Fixture in $FixtureResults) { Get-FootballFixtureEvent -Header $Header -Token $Token -FixtureId $($Fixture.Fixture_id) ` | Where-Object {$_.type_id -eq 14 -or $_.type_id -eq 15 -or $_.type_id -eq 16} ` | Select-Object -Property fixture_id,fixture_name,result_info,participant_name,addition,result,player_name,related_player_name,sort_order ` | Sort-Object -Property sort_order | Format-Table } # foreach } # if } catch { throw "$($MyInvocation.MyCommand.Name): $_.Exception.Message" } # trycatch } # function } # process |