Neynar · Example Payload

Create Transaction Pay Frame

Creates a new transaction pay mini app that can be used to collect payments through a mini app

Agents

Create Transaction Pay Frame 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": "create-transaction-pay-frame",
  "method": "POST",
  "path": "/v2/farcaster/frame/transaction/pay/",
  "summary": "Create transaction pay mini app",
  "description": "Creates a new transaction pay mini app that can be used to collect payments through a mini app",
  "tags": [
    "Agents"
  ],
  "parameters": [],
  "requestBody": {
    "required": true,
    "schema": {
      "$ref": "#/components/schemas/FramePayTransactionReqBody"
    },
    "example": null
  },
  "responses": {
    "200": {
      "description": "Success",
      "schema": {
        "$ref": "#/components/schemas/TransactionFrameResponse"
      },
      "example": null
    },
    "400": {
      "description": "Bad Request",
      "schema": {
        "$ref": "#/components/schemas/ErrorRes"
      },
      "example": null
    },
    "401": {
      "description": "Unauthorized",
      "schema": {
        "$ref": "#/components/schemas/ErrorRes"
      },
      "example": null
    },
    "500": {
      "description": "Server Error",
      "schema": {
        "$ref": "#/components/schemas/ErrorRes"
      },
      "example": null
    }
  }
}