Idea REST Endpoints
Idea
Use the idea service you to create, view, update, and delete idea. Update Keys : 'workspaceCode, ideaName' or 'ideaId'
- Assign Permission Profiles To User
- Method: postPath:
/api/restapi/idea/assignUser - Batch Create Ideas
- Method: postPath:
/api/restapi/idea/batch - Batch Delete Ideas
- Method: deletePath:
/api/restapi/idea/batch - Batch Sync Ideas
- Method: postPath:
/api/restapi/idea/syncBatch - Batch Update Ideas
- Method: putPath:
/api/restapi/idea/batch - Count Ideas with a Status
- Method: getPath:
/api/restapi/idea/status/{status} - Create an Idea
- Method: postPath:
/api/restapi/idea - Delete an Idea
- Method: deletePath:
/api/restapi/idea/{ideaId} - Remove Users Assigned to an Idea
- Method: postPath:
/api/restapi/idea/removeUsers - Update an Idea
- Method: putPath:
/api/restapi/idea - View an Idea
- Method: getPath:
/api/restapi/idea/{ideaId} - View Available Permission Sets for Idea
- Method: getPath:
/api/restapi/idea/permissionSets - View Idea by Name and Workspace Code
- Method: getPath:
/api/restapi/idea/{ideaName}/workspace/code/{workspaceCode} - View Ideas by Name and Workspace
- Method: getPath:
/api/restapi/idea/{ideaName}/workspace/{workspaceId} - View Ideas by Status and Workspace
- Method: getPath:
/api/restapi/idea/status/{status}/workspace/{workspaceId} - View Ideas under a Workspace
- Method: getPath:
/api/restapi/idea/workspace/{workspaceId} - View Ideas under a Workspace using Code
- Method: getPath:
/api/restapi/idea/workspace/code/{workspaceCode}