Athena
Functions

Drop a Postgres function by signature

Issues `DROP FUNCTION schema.function(arg_types...) RESTRICT`. Requires `management.functions.drop` and the same audit tables as upsert.

DELETE
/management/functions

Header Parameters

X-Athena-Client*string
apikey?string

Request Body

application/json

schema_name?string
Default"public"
function_name*string
arg_types*array<>

Postgres type names for the function signature, e.g. ["text","integer"]

Response Body

curl -X DELETE "https://athena-cluster.com/management/functions" \  -H "X-Athena-Client: string" \  -H "Content-Type: application/json" \  -d '{    "function_name": "string",    "arg_types": [      "string"    ]  }'
Empty
Empty
Empty
Empty
Empty
Empty