Reporting, Insights and Statistics
Manager Insights: Recent Member Recognition Reporting
This API lets you get insights about recent recognized Workspace members within a particular Workspace. The following recognition types supported: Gifts and Shoutouts. See documentation.
- Demo Test Environment https://api-demo.guusto.io/api/v1/reports/members/last-recognized
- Production Environment https://api.guusto.com/api/v1/reports/members/last-recognized
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api-demo.guusto.io/api/v1/reports/members/last-recognized?costCentre=CC002¤cy=CAD&department=Engineering&employeeNumber=23412&location=Vancouver&manager=23412&page=1&size=25' \
-H 'Authorization: Bearer <YOUR_ApiToken_HERE>' \
-H 'X-Workspace-id: 444'
Response
application/json
{ "page": 1, "size": 1, "totalElements": 2, "totalPages": 1, "teamMembers": [ { "teamMember": { "email": "john.doe@example.com", "firstName": "John", "lastName": "Doe" }, "lastDate": "2025-04-02", "type": "SHOUTOUT" }, { "teamMember": { "email": "Jimmy2@example.com", "firstName": "Jim", "lastName": "Bob" }, "lastDate": "2025-03-30", "type": "GIFT" } ] }
Workspace Activity Feed
This API lets you retrieve recognition activity within a particular Workspace. Which Activity
contains further details about a recognition.See documentation.
- Demo Test Environment https://api-demo.guusto.io/api/v1/reports/teams/activity
- Production Environment https://api.guusto.com/api/v1/reports/teams/activity
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api-demo.guusto.io/api/v1/reports/teams/activity?page=1&size=25' \
-H 'Authorization: Bearer <YOUR_ApiToken_HERE>' \
-H 'X-Workspace-id: 444'
Response
application/json
{ "page": 1, "size": 1, "totalElements": 2, "totalPages": 1, "activities": [ { "status": "PENDING", "sender": { "id": 123332, "email": "aldrin.ca@example.io", "firstName": "Aldrin", "lastName": "Ca", "image": "www.image.io/example2.png", "self": false }, "receiver": { "id": 1233, "email": "david.lu@example.io", "firstName": "David", "lastName": "Lu", "image": "www.image.io/example.png", "self": false }, "createdOn": "2025-04-02T12:39:24.356313", "description": "What an achievement!", "reason": { "id": 33, "description": "Team Lead" }, "isPrivate": false, "type": "SHOUTOUT", "account": 12323, "team": 765 }, { "status": "APPROVED", "sender": { "id": 123332, "email": "aldrin.ca@example.io", "firstName": "Aldrin", "lastName": "Ca", "image": "www.image.io/example2.png", "self": false }, "receiver": { "id": 1233, "email": "ericJ@example.io", "firstName": "Eric", "lastName": "Jupiter", "image": "www.example2.io/example.png", "self": false }, "createdOn": "2025-03-30T12:39:24.356351", "description": "What an achievement!", "reason": { "id": 33, "description": "Team Lead" }, "isPrivate": false, "type": "SHOUTOUT", "account": 12323, "team": 765 } ] }