Neynar · Schema

RespondChannelInviteReqBody

Neynar Farcaster API schema for RespondChannelInviteReqBody

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
accept boolean Accept or reject the invite
channel_id object
role object
signer_uuid object
View JSON Schema on GitHub

JSON Schema

respondchannelinvitereqbody.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/RespondChannelInviteReqBody",
  "title": "RespondChannelInviteReqBody",
  "description": "Neynar Farcaster API schema for RespondChannelInviteReqBody",
  "properties": {
    "accept": {
      "description": "Accept or reject the invite",
      "type": "boolean"
    },
    "channel_id": {
      "$ref": "#/components/schemas/ChannelId"
    },
    "role": {
      "$ref": "#/components/schemas/ChannelMemberRole"
    },
    "signer_uuid": {
      "$ref": "#/components/schemas/SignerUUID"
    }
  },
  "required": [
    "signer_uuid",
    "channel_id",
    "role",
    "accept"
  ],
  "type": "object"
}