TaskSharingRule
An object that represents a sharing rule for Tasks when created.
Supported API Calls: List | Get | Add | Update | Delete
Object Properties
Property |
Type |
Description |
Id |
integer |
A unique ID for the share. When adding a new share the value must be 0. |
GroupId |
integer |
The ID of the group doing the sharing. |
UserOrGroupId |
integer |
ID of the user or group the object should be shared with. |
UserType |
string (100) |
The value should always be group. |
TaskAccessLevel |
string (100) |
Sets the access level to the Task record. |
List
Description
Returns a list of team members associated with the specified opportunity
URL
https://{company}.bluecamroo.com/api/TaskSharingRule/list?taskid={taskid}
HTTP Method
GET
Parameters
None
Data Return
Returns a list of TaskSharingRule objects specified by taskid in the requested format (e.g., JSON or XML)
HTTP Return Status Code
200: Ok
401: Not authorized (you need to log in)
Get
Returns details for the specified team member.
URL
https://{company}.bluecamroo.com/api/TaskSharingRule/get/{id}?taskid={taskid}
HTTP Method
GET
Parameters
None
Data Return
Returns the TaskSharingRule object in the requested format (e.g., JSON or XML)
HTTP Return Status Code
200: Ok
400: Bad Request (One or more input data items is not valid, for example a mandatory field is blank)
401: Not authorized (you need to log in)
403: Forbidden (you don't have permission to this resource)
Add
Description
Adds an opportunity team member.
URL
https://{company}.bluecamroo.com/api/TaskSharingRule/add
HTTP Method
POST
Parameters
An TaskSharingRule object
Data Return
Returns the TaskSharingRule in the requested format (e.g., JSON or XML)
HTTP Return Status Code
201: Created
401: Not authorized (you need to log in)
403: Forbidden (you don't have permission to this resource)
Update
Description
Updates an TaskSharingRule object .
URL
https://{company}.bluecamroo.com/api/TaskSharingRule/update
HTTP Method
PUT
Parameters
An TaskSharingRule object
Data Return
Returns the TaskSharingRule in the requested format (e.g., JSON or XML)
HTTP Return Status Code
200: Ok
400: Bad Request (One or more input data items is not valid, for example a mandatory field is blank)
401: Not authorized (you need to log in)
403: Forbidden (you don't have permission to this resource)
Delete
Description
Deletes the team member.
URL
https://{company}.bluecamroo.com/api/TaskSharingRule/delete/{id}?taskid={taskid}
HTTP Method
DELETE
Parameters
None
Data Return
None
HTTP Return Status Code
200: Ok
400: Bad Request (One or more input data items is not valid, for example a mandatory field is blank)
401: Not authorized (you need to log in)
403: Forbidden (you don't have permission to this resource)