Notifications
Create a Notification Topic
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
Notifications
Create a Notification Topic
Create a notification topic for a company
POST
/
v5
/
app
/
notification_topics
curl --request POST \
--url https://{defaultHost}/v5/app/notification_topics \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"topic_identifier": "<string>",
"description": "<string>",
"notification_channel_identifiers": [
"email"
],
"status": "active",
"topic_type": "company"
}'
{
"app_id": "<string>",
"created_at": 123,
"name": "<string>",
"description": "<string>",
"notification_channel_identifiers": [
"email"
],
"status": "active",
"topic_identifier": "<string>",
"topic_type": "company",
"visibility": "visible"
}
Authorizations
App API key for /v5/app and /v5/company endpoints
Body
application/json
Response
201 - application/json
notification topic created
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://{defaultHost}/v5/app/notification_topics \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"topic_identifier": "<string>",
"description": "<string>",
"notification_channel_identifiers": [
"email"
],
"status": "active",
"topic_type": "company"
}'
{
"app_id": "<string>",
"created_at": 123,
"name": "<string>",
"description": "<string>",
"notification_channel_identifiers": [
"email"
],
"status": "active",
"topic_identifier": "<string>",
"topic_type": "company",
"visibility": "visible"
}