< Back

Remove-Record

Sun Jan 19, 2020 5:57 pm

NAME Remove-Record



SYNOPSIS

Removes an AirTable table record.





SYNTAX

Remove-Record -InputObject <PSObject> [-WhatIf] [-Confirm] [<CommonParameters>]





DESCRIPTION





PARAMETERS

-InputObject <PSObject>

A pscustomobject value representing the record to remove. This is typically used via the pipeline.



Required? true

Position? named

Default value

Accept pipeline input? true (ByValue)

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Confirm [<SwitchParameter>]



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS

void





-------------------------- EXAMPLE 1 --------------------------



PS>Find-Record -BaseName foo -Table bar -Name 'old' | Remove-Record



Removes any records in the 'bar' table with a field Name value of 'old'.











RELATED LINKS