Activity REST Endpoints

Activity
Use the Activity service to create, view, update, and delete activities. Activities represent units of work that must be completed to accomplish your project objectives. Activities typically have durations, resource or role requirements, and logical relationships with other project activities.
Batch Create Activities
Method: post
Path: /primeapi/restapi/activity/batch
Batch Delete Activities
Method: delete
Path: /primeapi/restapi/activity/batch
Batch Update Activities
Method: put
Path: /primeapi/restapi/activity/batch
Create an Activity
Method: post
Path: /primeapi/restapi/activity
Delete an Activity
Method: delete
Path: /primeapi/restapi/activity/{id}
Update an Activity
Method: put
Path: /primeapi/restapi/activity
View Activities by Configured Field
Method: get
Path: /primeapi/restapi/activity/project/{id}/configuredField/{viewColumnName}/{value}
View Activities by Project
Method: get
Path: /primeapi/restapi/activity/project/{id}
View Activities by Project, Code Type, and Code Value
Method: get
Path: /primeapi/restapi/activity/project/{id}/codeType/{typeId}/codeValue/{code}
View Activities by WBS
Method: get
Path: /primeapi/restapi/activity/wbsId/{id}
View Activity Configured Fields
Method: get
Path: /primeapi/restapi/activity/{id}/configuredFields
View all activities by parent code.
Method: get
Path: /primeapi/restapi/activity/byParent?workspaceCode={workspaceCode}&projectCode={projectCode}
View all Child Activities of an Activity
Method: get
Path: /primeapi/restapi/activity/{id}/childrenHierarchy
View an Activity
Method: get
Path: /primeapi/restapi/activity/{id}
View an activity by code
Method: get
Path: /primeapi/restapi/activity/byItemCode?workspaceCode={workspaceCode}&projectCode={projectCode}&activityCode={activityCode}
View an Activity by Code
Method: get
Path: /primeapi/restapi/activity/code/{code}
View an Activity by Project and Activity Code
Method: get
Path: /primeapi/restapi/activity/project/{id}/code/{code}