Delete ​Delete

yaml
type: "io.kestra.plugin.supabase.delete"
yaml
id: supabase_delete_by_id
namespace: company.team

tasks:
  - id: delete_user
    type: io.kestra.plugin.supabase.Delete
    url: https://your-project.supabase.com
    apiKey: "{{ secret('SUPABASE_API_KEY') }}"
    table: users
    filter: "id=eq.123"

yaml
id: supabase_delete_multiple
namespace: company.team

tasks:
  - id: delete_inactive_users
    type: io.kestra.plugin.supabase.Delete
    url: https://your-project.supabase.com
    apiKey: "{{ secret('SUPABASE_API_KEY') }}"
    table: users
    filter: "status=eq.inactive&last_login=lt.2022-01-01"

yaml
id: supabase_delete_with_return
namespace: company.team

tasks:
  - id: delete_user_with_audit
    type: io.kestra.plugin.supabase.Delete
    url: https://your-project.supabase.com
    apiKey: "{{ secret('SUPABASE_API_KEY') }}"
    table: users
    filter: "id=eq.123"
    select: "id,name,email,deleted_at"
Properties
Default { "followRedirects": "true", "allowFailed": "false", "defaultCharset": "UTF-8" }
Default public
SubType object
SubType array
Format uri
Format duration
Default PT5M
Format duration
Default false
SubType integer
Default UTF-8
Default true
SubType string
Possible Values
REQUEST_HEADERSREQUEST_BODYRESPONSE_HEADERSRESPONSE_BODY
Default DIRECT
Possible Values
DIRECTHTTPSOCKS