Engagedly Activities API
Access praise and recognition activities
Access praise and recognition activities
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/engagedly-activities-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: Engagedly Activities API
description: 'REST API for the Engagedly people strategy execution platform. Provides endpoints for managing users, departments, locations, job titles, business units, permissions, user attributes, and employee activities such as praises and recognition. Supports performance review workflows, goal management, and organizational data integration using header-based authentication with ClientKey and SecretKey.
'
version: beta
contact:
url: https://engagedly.com
license:
name: Proprietary
servers:
- url: https://api.engagedly.com/beta
description: Production API server
security:
- clientKeyAuth: []
secretKeyAuth: []
tags:
- name: Activities
description: Access praise and recognition activities
paths:
/activities/praises:
get:
operationId: listPublicPraises
summary: Get all public praises
description: Returns a paginated list of all public praise activities in the organization.
tags:
- Activities
parameters:
- $ref: '#/components/parameters/pageParam'
- $ref: '#/components/parameters/sizeParam'
responses:
'200':
description: Paginated list of praise activities
content:
application/json:
schema:
$ref: '#/components/schemas/PraiseListResponse'
'401':
$ref: '#/components/responses/Unauthorized'
components:
schemas:
Praise:
type: object
properties:
id:
type: integer
activity_type:
type: string
example: Praise
activity_date:
type: string
format: date-time
last_updated_at:
type: string
format: date-time
title:
type:
- string
- 'null'
content:
type: string
pinned:
type: boolean
author:
$ref: '#/components/schemas/PraiseAuthor'
tags:
type: array
items:
$ref: '#/components/schemas/PraiseTag'
audience:
type: array
items:
$ref: '#/components/schemas/PraiseAudience'
links:
type: array
items:
type: object
attachments:
type: array
items:
type: object
comment_details:
type: object
properties:
count:
type: integer
like_details:
type: object
properties:
count:
type: integer
is_liked:
type: boolean
can_edit:
type: boolean
can_delete:
type: boolean
recognized_actors:
type: array
items:
$ref: '#/components/schemas/PraiseActor'
ErrorResponse:
type: object
properties:
error_type:
type: string
enum:
- api_connection_error
- authentication_error
- invalid_request_error
- validation_error
example: validation_error
errors:
type: array
items:
$ref: '#/components/schemas/ErrorDetail'
PraiseTag:
type: object
properties:
code:
type: string
label:
type: string
Pagination:
type: object
properties:
page:
type: integer
example: 1
size:
type: integer
example: 25
has_more:
type: boolean
example: false
total_records:
type: integer
example: 42
PraiseActor:
type: object
properties:
id:
type: string
name:
type: string
display_picture:
$ref: '#/components/schemas/DisplayPicture'
designation:
type: string
PraiseAudience:
type: object
properties:
id:
type: string
name:
type: string
display_picture:
$ref: '#/components/schemas/DisplayPicture'
type:
type: string
DisplayPicture:
type: object
properties:
large:
type:
- string
- 'null'
format: uri
medium:
type:
- string
- 'null'
format: uri
small:
type:
- string
- 'null'
format: uri
original:
type:
- string
- 'null'
format: uri
reduced:
type:
- string
- 'null'
format: uri
ErrorDetail:
type: object
properties:
field:
type: string
example: name
message:
type: string
example: Mandatory attribute missing
code:
type: string
example: missing_field
PraiseListResponse:
type: object
properties:
success:
type: boolean
pagination:
$ref: '#/components/schemas/Pagination'
data:
type: array
items:
$ref: '#/components/schemas/Praise'
PraiseAuthor:
type: object
properties:
id:
type: string
name:
type: string
display_picture:
$ref: '#/components/schemas/DisplayPicture'
designation:
type: string
parameters:
sizeParam:
name: size
in: query
description: Number of records per page (maximum 50)
schema:
type: integer
minimum: 1
maximum: 50
default: 25
pageParam:
name: page
in: query
description: Page number (starts at 1)
schema:
type: integer
minimum: 1
default: 1
responses:
Unauthorized:
description: Unauthorized — invalid or missing ClientKey/SecretKey
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
securitySchemes:
clientKeyAuth:
type: apiKey
in: header
name: ClientKey
description: Client key obtained from the Engagedly portal under Integrations > Engagedly API
secretKeyAuth:
type: apiKey
in: header
name: SecretKey
description: Secret key obtained from the Engagedly portal. Shown only once upon generation.