Neynar · Example Payload

Remove Channel Member

Remove a user from a channel or a user's invite to a channel role

Channel

Remove Channel Member 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": "remove-channel-member",
  "method": "DELETE",
  "path": "/v2/farcaster/channel/member/",
  "summary": "Remove user",
  "description": "Remove a user from a channel or a user's invite to a channel role",
  "tags": [
    "Channel"
  ],
  "parameters": [],
  "requestBody": {
    "required": true,
    "schema": {
      "$ref": "#/components/schemas/RemoveChannelMemberReqBody"
    },
    "example": null
  },
  "responses": {
    "200": {
      "description": "Success",
      "schema": {
        "$ref": "#/components/schemas/OperationResponse"
      },
      "example": null
    },
    "400": {
      "description": "Bad Request",
      "schema": {
        "$ref": "#/components/schemas/ErrorRes"
      },
      "example": null
    },
    "500": {
      "description": "Server Error",
      "schema": {
        "$ref": "#/components/schemas/ErrorRes"
      },
      "example": null
    }
  }
}