[This is preliminary documentation and is subject to change.]

Updates OfficeClip data using a key. Update returns a bool showing whether the update succeeded. Note that if a null value of any column is suppled, that column will not get updated in OfficeClip.
Entity(Id)Description
Task(8)The OfficeClip Task. The Service subtype for this type is the Contact(18) and Account(31)
Event(14)The OfficeClip Calendar Events. The Service subtype for this type is the Contact(18) and Account(31)
Contact(18)The contact management metaentity
Note(20)The OfficeClip Notes Entity. The Service subtype for this type is the Contact(18) and Account(31)
Mail Merge Campaign Recipients(29)The mail merge campaign recipient information, the serviceSubType should be sent as -1, the primaryKey is the campaignId
Attachment(24)Document attachments with various applications
Mail Merge Campaign(28)The mail merge campaign information
Timesheet(34)Timesheet information, currently only the exported status of the timesheet can be set using this method
Expense(36)Expense information. currently only the exported status of the expense can be set using this method

Namespace:OfficeClip.Service.Web
Assembly: �OfficeClip.Service (in OfficeClip.Service)
Version: 8.1.1.0

Syntax

C#
public DataSet Update(
	int serviceType,
	DataSet ds
)
Visual Basic (Declaration)
Public Function Update ( _
	serviceType As Integer, _
	ds As DataSet _
) As DataSet
Visual C++
public:
DataSet^ Update(
	int serviceType, 
	DataSet^ ds
)

Parameters

serviceType
Type: System..::.Int32
The unique service type
ds
Type: System.Data..::.DataSet
The dataset with the data to be updated

Return Value

The output dataset. The schema of the dataset is the schema for the service type "Return Value".

See Also