> ## Documentation Index
> Fetch the complete documentation index at: https://docs.enginy.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Add reactions to a Social Selling post

> Schedule automatic reactions on a tracked post from your connected LinkedIn identities. Pass `amount` to draw from the identities allowed to react in this workspace, or `identityIds` to react from specific identities. Reactions are spread over time and never come from the post author unless `skipAuthor` is false.

    > **Required scope:** `SOCIAL_SELLING_WRITE`
    >
    > **Rate limit:** 30 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json post /v1/social-selling/posts/{postId}/reactions
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/social-selling/posts/{postId}/reactions:
    post:
      tags:
        - Social Selling
      summary: Add reactions to a Social Selling post
      description: >-
        Schedule automatic reactions on a tracked post from your connected
        LinkedIn identities. Pass `amount` to draw from the identities allowed
        to react in this workspace, or `identityIds` to react from specific
        identities. Reactions are spread over time and never come from the post
        author unless `skipAuthor` is false.

            > **Required scope:** `SOCIAL_SELLING_WRITE`
            >
            > **Rate limit:** 30 requests per minute
      parameters:
        - schema:
            type: integer
            exclusiveMinimum: 0
            description: Tracked post id (`id` in the posts list).
          required: true
          description: Tracked post id (`id` in the posts list).
          name: postId
          in: path
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                amount:
                  type: integer
                  minimum: 1
                  maximum: 500
                  description: How many reactions to add from the available identity pool.
                identityIds:
                  type: array
                  items:
                    type: integer
                    exclusiveMinimum: 0
                  minItems: 1
                  maxItems: 500
                  description: React from exactly these identities instead of the pool.
                reactionTypes:
                  type: array
                  items:
                    type: string
                    enum:
                      - LIKE
                      - PRAISE
                      - EMPATHY
                      - INTEREST
                      - APPRECIATION
                      - ENTERTAINMENT
                  minItems: 1
                  description: >-
                    Reaction kinds to spread across. Defaults to the LinkedIn
                    mix.
                skipAuthor:
                  type: boolean
                  default: true
                  description: Never react with the post's own author. On by default.
      responses:
        '201':
          description: Reactions scheduled
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      postId:
                        type: number
                      publishingPostId:
                        type: number
                      amount:
                        type: number
                      identityIds:
                        type: array
                        items:
                          type: number
                      appUrl:
                        type: string
                    required:
                      - postId
                      - publishingPostId
                      - amount
                      - identityIds
                      - appUrl
                required:
                  - status
                  - message
                  - data
        '400':
          description: >-
            Neither `amount` nor `identityIds` given, or an identity cannot
            react in this workspace
        '403':
          description: >-
            Social Selling is not enabled for this workspace. Ask your workspace
            admin to enable the feature.
        '404':
          description: >-
            Post not found in this workspace or outside the caller’s identity
            scope
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````