Delete Farcaster Cast
Delete a Farcaster cast via Neynar API. Requires a connected Farcaster account with signer. Only the cast author can delete it. Ideal for: content moderation, automated cleanup, removing outdated announcements.
Catalog action Social farcaster
Delete a Farcaster cast via Neynar API. Requires a connected Farcaster account with signer. Only the cast author can delete it. Ideal for: content moderation, automated cleanup, removing outdated announcements.
At a Glance
| Field | Value |
|---|---|
| Action ID | delete-farcaster-cast |
| Category | Social |
| Connector | farcaster |
| Requires gas | No |
| Funds movement | None declared |
| Tags | social, farcaster, neynar, cast, delete, write |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
castHash | string | Yes | Hash of the cast to delete |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
status | string | Yes | Status of the delete operation |
deletedCastHash | string | No | Hash of the deleted cast |
error | string | No | Error message if the delete failed |
Examples
json{ "type": "delete-farcaster-cast", "payload": { "castHash": "example-castHash" }, "children": [], "connector": { "type": "farcaster", "id": "conn_farcaster" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/delete-farcaster-cast/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "castHash": "example-castHash" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
