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: postPath:
/primeapi/restapi/activity/batch
- Batch Delete Activities
- Method: deletePath:
/primeapi/restapi/activity/batch
- Batch Update Activities
- Method: putPath:
/primeapi/restapi/activity/batch
- Create an Activity
- Method: postPath:
/primeapi/restapi/activity
- Delete an Activity
- Method: deletePath:
/primeapi/restapi/activity/{id}
- Update an Activity
- Method: putPath:
/primeapi/restapi/activity
- View Activities by Configured Field
- Method: getPath:
/primeapi/restapi/activity/project/{id}/configuredField/{viewColumnName}/{value}
- View Activities by Project
- Method: getPath:
/primeapi/restapi/activity/project/{id}
- View Activities by Project, Code Type, and Code Value
- Method: getPath:
/primeapi/restapi/activity/project/{id}/codeType/{typeId}/codeValue/{code}
- View Activities by WBS
- Method: getPath:
/primeapi/restapi/activity/wbsId/{id}
- View Activity Configured Fields
- Method: getPath:
/primeapi/restapi/activity/{id}/configuredFields
- View all activities by parent code.
- Method: getPath:
/primeapi/restapi/activity/byParent?workspaceCode={workspaceCode}&projectCode={projectCode}
- View all Child Activities of an Activity
- Method: getPath:
/primeapi/restapi/activity/{id}/childrenHierarchy
- View an Activity
- Method: getPath:
/primeapi/restapi/activity/{id}
- View an activity by code
- Method: getPath:
/primeapi/restapi/activity/byItemCode?workspaceCode={workspaceCode}&projectCode={projectCode}&activityCode={activityCode}
- View an Activity by Code
- Method: getPath:
/primeapi/restapi/activity/code/{code}
- View an Activity by Project and Activity Code
- Method: getPath:
/primeapi/restapi/activity/project/{id}/code/{code}