-
Notifications
You must be signed in to change notification settings - Fork 1
API Activity tracker item
Anastasiia.Birillo edited this page Mar 11, 2021
·
8 revisions
The model stores activity-tracker files in the server from the TaskTracker plugin.
Field | Type | Description |
---|---|---|
id | ObjectId | internal MongoDB id |
externalAtiId | Integer | external id |
codePath | String | path for the activity tracker file |
createdAt | Date | created date |
The public fields of the activity-tracker-item:
Field | Type | Description |
---|---|---|
id | Integer | external id |
codePath | String | path for the activity tracker file. It can be null
|
createdAt | Date | created date |
URL | Type | Description |
---|---|---|
/api/activity-tracker-item |
POST |
create a new activity-tracker-item in the database |
Parameter | Type | Description |
---|---|---|
activitytracker | File | activitytracker file (in csv format) |
The external id of the activity-tracker-item.
URL | Type | Description |
---|---|---|
/api/activity-tracker-item/all |
GET |
get all activity-tracker-items |
Empty body.
List of the activity-tracker-items. Each activity-tracker-item has the public fields of the activity-tracker-item model.
URL | Type | Description |
---|---|---|
/api/activity-tracker-item/:id |
GET |
get activity-tracker-item by external id |
Empty body.
The public fields of the activity-tracker-item.