Skip to main content
POST
/
admin
/
v1
/
networks
/
{network_id}
/
comments
/
{comment_id}
/
reactions
Create a new reaction on a comment
curl --request POST \
  --url https://api.mn.co/admin/v1/networks/{network_id}/comments/{comment_id}/reactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "emoji": "<string>"
}'
{
  "id": "1234",
  "created_at": "2025-11-21T21:15:34+00:00",
  "updated_at": "2025-11-21T21:15:34+00:00",
  "space_id": 123,
  "network_id": 100,
  "targetable_id": 456,
  "targetable_type": "Post",
  "targetable_space_id": 123,
  "emoji": "👍",
  "base_emoji": "👍",
  "member_id": 789
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

comment_id
integer
required

The ID of the comment

network_id
required

The Network's unique integer ID, or subdomain Unique numeric network ID

Body

application/json

Submit results as JSON

A reaction request for creating reactions on posts or comments

emoji
string
required

The emoji used for the reaction (may include skin tone modifiers)

Response

Returns the newly created reaction on success

A reaction to a post or comment

id
integer
required

The record's integer ID

Example:

"1234"

created_at
string<date-time>
required

The date and time the record was created

Example:

"2025-11-21T21:15:34+00:00"

updated_at
string<date-time>
required

The date and time the record was last modified

Example:

"2025-11-21T21:15:34+00:00"

space_id
integer
required

The ID of the space where the reaction was created

Example:

123

network_id
integer
required

The ID of the network where the reaction was created

Example:

100

targetable_id
integer
required

The ID of the post or comment being reacted to

Example:

456

targetable_type
string
required

The type of object being reacted to (Post or Comment)

Example:

"Post"

targetable_space_id
integer
required

The ID of the space where the target post or comment is located

Example:

123

emoji
string
required

The emoji used for the reaction (may include skin tone modifiers)

Example:

"👍"

base_emoji
string
required

The base emoji without skin tone modifiers

Example:

"👍"

member_id
integer
required

The ID of the member who created the reaction

Example:

789