/
API-V2 C#_SDK Update objects

API-V2 C#_SDK Update objects

Uptade a single object

SDK-Method

Task IApiV2Endpoint<TId>.UpdateByIdAsync( TId id, object newValues, CancellationToken cancellationToken = default )

REST-Equivalent

PATCH /servicedmcore/CoreIdentity/20 { "foreign_id": "Test", "ci_family_name": "Testikus", "ci_given_name": "Peter" }

Example-Code

public async Task UpdateCoreIdentity() { var api = GetService<IApiV2Client>(); var endpoint = api.Dbs.Site.Config.Site; await endpoint.UpdateByIdAsync(20, new { CiFamilyName = "FM", CiGivenName = "GN", }); }

Uptade multiple objects

SDK-Method

Task<MultiRequestItemStatusResult<TId>[]> IApiV2Endpoint<TId>.BatchUpdateAsync( object newValues, params IFilter[] filters )

REST-Equivalent

PATCH /servicedmcore/CoreIdentity?filter=Postleitzahl eq 5000 { "Stadt / Ort": "Aarau" }

Example-Code

public async Task UpdateCoreIdentities() { var api = GetService<IApiV2Client>(); var endpoint = api.DmcoreService.Servicedmcore.CoreIdentity; var results = await endpoint.BatchUpdateAsync( new { CiCity = "Aarau" }, new PropertyFilter { PropertyName = "ci_zip_code", FilterType = FilterType.Equals, Value = "5000" } ); }

Answer DataContracts

public class MultiRequestItemStatusResult<TId> { /// <summary> /// The objects Identifier /// </summary> public TId Id { get; set; } /// <summary> /// Success or Error /// </summary> public ObjectStatus StatusType { get; set; } /// <summary> /// The ErrorObject if there was an error /// <see cref="iTsense.Moving.Common.ApiV2.Client.ApiV2Exception"/> /// </summary> public object Value { get; set; } }

 

Related content

© ITSENSE AG. Alle Rechte vorbehalten. ITSENSE und CoreOne sind eingetragene Marken der ITSENSE AG.