Neynar · Example Payload

Publish Farcaster Action

Securely communicate and perform actions on behalf of users across different apps. It enables an app to send data or trigger actions in another app on behalf of a mutual user by signing messages using the user's Farcaster signer.

Action

Publish Farcaster Action is an example object payload from Neynar, with 9 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersrequestBodyresponses

Example Payload

Raw ↑
{
  "operationId": "publish-farcaster-action",
  "method": "POST",
  "path": "/v2/farcaster/action/",
  "summary": "User actions across apps",
  "description": "Securely communicate and perform actions on behalf of users across different apps. It enables an app to send data or trigger actions in another app on behalf of a mutual user by signing messages using the user's Farcaster signer.",
  "tags": [
    "Action"
  ],
  "parameters": [],
  "requestBody": {
    "required": true,
    "schema": {
      "$ref": "#/components/schemas/FarcasterActionReqBody"
    },
    "example": null
  },
  "responses": {
    "200": {
      "description": "Success",
      "schema": {
        "additionalProperties": true,
        "type": "object"
      },
      "example": null
    }
  }
}