Feed Content Items
Create a Feed Content Item
API Documentation
Apps
- Overview
- Companies
- Experiences
- Members
- Memberships
- Products
- Payments
- Reviews
- Notifications
- Line Items
- App Connections
- Users
- Feed Content Items
- Inbound Webhooks
- Inbound Webhook Filters
- GETRetrieve the current app
- GETCheck Access
Company
- Overview
- Memberships
- Products
- Payments
- Reviews
- Users
- GETRetrieve the current company
Me
- Overview
- Memberships
- Products
- Payments
- Reviews
- Experiences
- Companies
- POSTCreate an OAuth Token
- GETRetrieve the current user
- GETList a User's social accounts
Chat
- Webhooks
Feed Content Items
Create a Feed Content Item
Create a Feed Content Item
POST
/
v5
/
app
/
feed_content_items
curl --request POST \
--url https://{defaultHost}/v5/app/feed_content_items \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"experience_id": "<string>",
"user_id": "<string>",
"external_id": "<string>",
"parent_external_id": "<string>",
"rest_path": "<string>",
"event_type": "<string>",
"metadata": {},
"file_attachments": [
{
"type": "image",
"file_url": "<string>"
}
],
"gifs": [
{
"height": 123,
"width": 123,
"original_url": "<string>",
"preview_url": "<string>",
"url": "<string>",
"slug": "<string>",
"title": "<string>",
"provider": "<string>"
}
]
}'
{
"feed_content_item_id": "<string>"
}
Authorizations
App API key for /v5/app and /v5/company endpoints
Body
application/json
Response
201
application/json
feed content item created
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://{defaultHost}/v5/app/feed_content_items \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"experience_id": "<string>",
"user_id": "<string>",
"external_id": "<string>",
"parent_external_id": "<string>",
"rest_path": "<string>",
"event_type": "<string>",
"metadata": {},
"file_attachments": [
{
"type": "image",
"file_url": "<string>"
}
],
"gifs": [
{
"height": 123,
"width": 123,
"original_url": "<string>",
"preview_url": "<string>",
"url": "<string>",
"slug": "<string>",
"title": "<string>",
"provider": "<string>"
}
]
}'
{
"feed_content_item_id": "<string>"
}