Agorapulse Inbox reply API
The Inbox reply API from Agorapulse — 1 operation(s) for inbox reply.
The Inbox reply API from Agorapulse — 1 operation(s) for inbox reply.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/agorapulse-inbox-reply-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Open Inbox reply API
description: Agorapulse's Open API documentation
version: '1.0'
servers:
- url: https://api.agorapulse.com
description: Production
security:
- bearerAuth: []
tags:
- name: Inbox reply
paths:
/v1.0/inbox/organizations/{organizationId}/workspaces/{workspaceId}/accounts/{accountUid}/reply:
post:
tags:
- Inbox reply
summary: Reply to an item
operationId: create
parameters:
- name: organizationId
in: path
description: Organization id
required: true
schema:
type: integer
example: 1419
- name: workspaceId
in: path
description: Workspace id
required: true
schema:
type: integer
example: 1416
- name: accountUid
in: path
description: Account uid
required: true
schema:
type: string
example: facebook_611
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateReplyRequest'
required: true
responses:
'200':
description: create 200 response
content:
application/json:
schema:
$ref: '#/components/schemas/ItemDTO'
components:
schemas:
CreateReplyRequest:
required:
- itemId
- message
type: object
properties:
itemId:
minLength: 1
type: string
description: The ID of the inbox item to reply to
example: item123
message:
minLength: 1
type: string
description: The content of the reply message
example: Thank you for your message!
privateReply:
type: boolean
description: When true, sends a private message to the user instead of replying publicly to a public item (e.g., comment). The reply will be sent as a direct/private message. Supported by Facebook, Instagram, and Twitter.
default: false
excludedUsers:
type: array
description: List of user IDs to exclude from mentions (Twitter-specific)
items:
type: string
description: Request to create a reply to an inbox item
Profile:
required:
- name
- network
- uid
type: object
properties:
uid:
minLength: 1
type: string
name:
type: string
network:
$ref: '#/components/schemas/Network'
ItemType:
type: string
enum:
- PRIVATE_MESSAGE
- CONVERSATION
- COMMENT
- POST
ItemCreator:
required:
- id
- name
type: object
properties:
id:
type: string
name:
type: string
ItemSentiment:
type: string
enum:
- POSITIVE
- NEGATIVE
- NEUTRAL
Network:
type: string
enum:
- BLUESKY
- FACEBOOK
- GOOGLE
- INSTAGRAM
- LINKEDIN
- PINTEREST
- THREADS
- TIKTOK
- TWITTER
- YOUTUBE
AbstractItem:
type: object
properties:
id:
type: string
parentId:
type: string
workspaceId:
type: integer
format: int64
creationDate:
type: string
format: date-time
type:
$ref: '#/components/schemas/ItemType'
text:
type: string
agorapulseLink:
type: string
networkLink:
type: string
profile:
$ref: '#/components/schemas/Profile'
creator:
$ref: '#/components/schemas/ItemCreator'
labels:
type: array
items:
type: string
sentiment:
$ref: '#/components/schemas/ItemSentiment'
ItemDTO:
$ref: '#/components/schemas/AbstractItem'
securitySchemes:
bearerAuth:
type: apiKey
name: X-API-KEY
in: header