Retrieve activities in team space
This endpoint allows you to retrieve information about all activities within a specific team space.
This endpoint allows you to retrieve information about all activities within a specific team. This can be useful for displaying and managing activities within the team or for automating processes that require information about activities.
Request
- Method: GET
- Path: /external/v0/zapier/webhooks/teams/{teamId}/activities
- Header:
- X-KEY: API key for authentication.
- Path variables:
- teamId(number): Unique team identifier.
Response
After successfully retrieving activities, you will receive response in JSON format with information:
[
{
"name": "activity task 1",
"dueDate": null,
"externalId": null,
"id": 55556504,
"reportedState": null,
"assignee": [],
"followers": [],
"section": {
"id": 21555650,
"name": "testing section"
},
"tags": {},
"state": "OPEN",
"parentActivity": null,
"calcNumOpenSubActivities": 0,
"deleted": false,
"kanban": null,
"lastModified": "2023-09-18T09:52:54.384Z",
"calcComments": 0,
"sortOrder": 5.000000239755E11,
"priority": null,
"delegationRootActivityId": null,
"delegationTargetActivityId": null,
"delegationTargetActivityIsActive": false,
"customFields": {},
"owner": {
"id": 13450,
"fullName": "Black Hannah"
},
"backgroundId": null,
"hasDescription": false
},
...
]
Description of attributes:
- name: The name of the activity.
- dueDate: The due date of the task.
- externalId: External identifier of the activity.
- id: The unique identifier of the activity.
- reportedState: Reported state of the activity.
- assignee: List of assigned individuals to the activity.
- followers: List of individuals who are following the activity.
- section: The section to which the activity belongs. It contains information about the section, including its ID and name.
- tags: List of tags assigned to the activity.
- state: The state of the activity can have values "OPEN" or "CLOSE."
- parentActivity: Parent activity.
- calcNumOpenSubActivities: Calculated count of open sub-activities.
- deleted: Information whether the activity has been deleted.
- kanban: Information about the activity's status.
- lastModified: Date and time of the last modification of the activity.
- calcComments: Calculated count of comments on the activity.
- sortOrder: The order of the activity within the displayed list of activities.
- priority: Priority of the activity.
- delegationRootActivityId: ID of the root delegated activity.
- delegationTargetActivityId: ID of the target delegated activity.
- delegationTargetActivityIsActive: State of the activity that is the target of delegation.
- customFields: Custom fields of the activity.
- owner: Owner of the activity. It contains information about the owner, including their ID and full name.
- backgroundId: ID of the activity's background.
- hasDescription: Information whether the activity has a description.