LUSID C# SDK
Public Member Functions | List of all members
Lusid.Sdk.Api.IParticipationsApiSync Interface Reference

Represents a collection of functions to interact with the API endpoints More...

Inheritance diagram for Lusid.Sdk.Api.IParticipationsApiSync:
Inheritance graph
[legend]

Public Member Functions

DeletedEntityResponse DeleteParticipation (string scope, string code, int operationIndex=0)
 [EARLY ACCESS] DeleteParticipation: Delete participation More...
 
ApiResponse< DeletedEntityResponseDeleteParticipationWithHttpInfo (string scope, string code, int operationIndex=0)
 [EARLY ACCESS] DeleteParticipation: Delete participation More...
 
Participation GetParticipation (string scope, string code, DateTimeOffset? asAt=default(DateTimeOffset?), List< string >? propertyKeys=default(List< string >?), int operationIndex=0)
 [EARLY ACCESS] GetParticipation: Get Participation More...
 
ApiResponse< ParticipationGetParticipationWithHttpInfo (string scope, string code, DateTimeOffset? asAt=default(DateTimeOffset?), List< string >? propertyKeys=default(List< string >?), int operationIndex=0)
 [EARLY ACCESS] GetParticipation: Get Participation More...
 
PagedResourceListOfParticipation ListParticipations (DateTimeOffset? asAt=default(DateTimeOffset?), string? page=default(string?), List< string >? sortBy=default(List< string >?), int? limit=default(int?), string? filter=default(string?), List< string >? propertyKeys=default(List< string >?), int operationIndex=0)
 [EARLY ACCESS] ListParticipations: List Participations More...
 
ApiResponse< PagedResourceListOfParticipationListParticipationsWithHttpInfo (DateTimeOffset? asAt=default(DateTimeOffset?), string? page=default(string?), List< string >? sortBy=default(List< string >?), int? limit=default(int?), string? filter=default(string?), List< string >? propertyKeys=default(List< string >?), int operationIndex=0)
 [EARLY ACCESS] ListParticipations: List Participations More...
 
ResourceListOfParticipation UpsertParticipations (ParticipationSetRequest? participationSetRequest=default(ParticipationSetRequest?), int operationIndex=0)
 [EARLY ACCESS] UpsertParticipations: Upsert Participation More...
 
ApiResponse< ResourceListOfParticipationUpsertParticipationsWithHttpInfo (ParticipationSetRequest? participationSetRequest=default(ParticipationSetRequest?), int operationIndex=0)
 [EARLY ACCESS] UpsertParticipations: Upsert Participation More...
 
- Public Member Functions inherited from Lusid.Sdk.Client.IApiAccessor
string GetBasePath ()
 Gets the base path of the API client. More...
 

Additional Inherited Members

- Properties inherited from Lusid.Sdk.Client.IApiAccessor
IReadableConfiguration Configuration [get, set]
 Gets or sets the configuration object More...
 
ExceptionFactory ExceptionFactory [get, set]
 Provides a factory method hook for the creation of exceptions. More...
 

Detailed Description

Represents a collection of functions to interact with the API endpoints

Member Function Documentation

◆ DeleteParticipation()

DeletedEntityResponse Lusid.Sdk.Api.IParticipationsApiSync.DeleteParticipation ( string  scope,
string  code,
int  operationIndex = 0 
)

[EARLY ACCESS] DeleteParticipation: Delete participation

Delete an participation. Deletion will be valid from the participation&#39;s creation datetime. This means that the participation will no longer exist at any effective datetime from the asAt datetime of deletion.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
scopeThe participation scope.
codeThe participation&#39;s code. This, together with the scope uniquely identifies the participation to delete.
operationIndexIndex associated with the operation.
Returns
DeletedEntityResponse

Implemented in Lusid.Sdk.Api.ParticipationsApi.

◆ DeleteParticipationWithHttpInfo()

ApiResponse<DeletedEntityResponse> Lusid.Sdk.Api.IParticipationsApiSync.DeleteParticipationWithHttpInfo ( string  scope,
string  code,
int  operationIndex = 0 
)

[EARLY ACCESS] DeleteParticipation: Delete participation

Delete an participation. Deletion will be valid from the participation&#39;s creation datetime. This means that the participation will no longer exist at any effective datetime from the asAt datetime of deletion.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
scopeThe participation scope.
codeThe participation&#39;s code. This, together with the scope uniquely identifies the participation to delete.
operationIndexIndex associated with the operation.
Returns
ApiResponse of DeletedEntityResponse

Implemented in Lusid.Sdk.Api.ParticipationsApi.

◆ GetParticipation()

Participation Lusid.Sdk.Api.IParticipationsApiSync.GetParticipation ( string  scope,
string  code,
DateTimeOffset?  asAt = default(DateTimeOffset?),
List< string >?  propertyKeys = default(List< string >?),
int  operationIndex = 0 
)

[EARLY ACCESS] GetParticipation: Get Participation

Fetch a Participation that matches the specified identifier

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
scopeThe scope to which the participation belongs.
codeThe participation&#39;s unique identifier.
asAtThe asAt datetime at which to retrieve the participation. Defaults to return the latest version of the participation if not specified. (optional)
propertyKeysA list of property keys from the &quot;Participation&quot; domain to decorate onto the participation. These take the format {domain}/{scope}/{code} e.g. &quot;Participation/system/Name&quot;. (optional)
operationIndexIndex associated with the operation.
Returns
Participation

Implemented in Lusid.Sdk.Api.ParticipationsApi.

◆ GetParticipationWithHttpInfo()

ApiResponse<Participation> Lusid.Sdk.Api.IParticipationsApiSync.GetParticipationWithHttpInfo ( string  scope,
string  code,
DateTimeOffset?  asAt = default(DateTimeOffset?),
List< string >?  propertyKeys = default(List< string >?),
int  operationIndex = 0 
)

[EARLY ACCESS] GetParticipation: Get Participation

Fetch a Participation that matches the specified identifier

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
scopeThe scope to which the participation belongs.
codeThe participation&#39;s unique identifier.
asAtThe asAt datetime at which to retrieve the participation. Defaults to return the latest version of the participation if not specified. (optional)
propertyKeysA list of property keys from the &quot;Participation&quot; domain to decorate onto the participation. These take the format {domain}/{scope}/{code} e.g. &quot;Participation/system/Name&quot;. (optional)
operationIndexIndex associated with the operation.
Returns
ApiResponse of Participation

Implemented in Lusid.Sdk.Api.ParticipationsApi.

◆ ListParticipations()

PagedResourceListOfParticipation Lusid.Sdk.Api.IParticipationsApiSync.ListParticipations ( DateTimeOffset?  asAt = default(DateTimeOffset?),
string?  page = default(string?),
List< string >?  sortBy = default(List< string >?),
int?  limit = default(int?),
string?  filter = default(string?),
List< string >?  propertyKeys = default(List< string >?),
int  operationIndex = 0 
)

[EARLY ACCESS] ListParticipations: List Participations

Fetch the last pre-AsAt date version of each Participation in scope (does not fetch the entire history).

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
asAtThe asAt datetime at which to retrieve the participation. Defaults to return the latest version of the participation if not specified. (optional)
pageThe pagination token to use to continue listing participations from a previous call to list participations. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request. (optional)
sortByA list of field names to sort by, each suffixed by &quot; ASC&quot; or &quot; DESC&quot; (optional)
limitWhen paginating, limit the number of returned results to this many. (optional)
filterExpression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid. (optional)
propertyKeysA list of property keys from the &quot;Participation&quot; domain to decorate onto each participation. These take the format {domain}/{scope}/{code} e.g. &quot;Participation/system/Name&quot;. (optional)
operationIndexIndex associated with the operation.
Returns
PagedResourceListOfParticipation

Implemented in Lusid.Sdk.Api.ParticipationsApi.

◆ ListParticipationsWithHttpInfo()

ApiResponse<PagedResourceListOfParticipation> Lusid.Sdk.Api.IParticipationsApiSync.ListParticipationsWithHttpInfo ( DateTimeOffset?  asAt = default(DateTimeOffset?),
string?  page = default(string?),
List< string >?  sortBy = default(List< string >?),
int?  limit = default(int?),
string?  filter = default(string?),
List< string >?  propertyKeys = default(List< string >?),
int  operationIndex = 0 
)

[EARLY ACCESS] ListParticipations: List Participations

Fetch the last pre-AsAt date version of each Participation in scope (does not fetch the entire history).

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
asAtThe asAt datetime at which to retrieve the participation. Defaults to return the latest version of the participation if not specified. (optional)
pageThe pagination token to use to continue listing participations from a previous call to list participations. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request. (optional)
sortByA list of field names to sort by, each suffixed by &quot; ASC&quot; or &quot; DESC&quot; (optional)
limitWhen paginating, limit the number of returned results to this many. (optional)
filterExpression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid. (optional)
propertyKeysA list of property keys from the &quot;Participation&quot; domain to decorate onto each participation. These take the format {domain}/{scope}/{code} e.g. &quot;Participation/system/Name&quot;. (optional)
operationIndexIndex associated with the operation.
Returns
ApiResponse of PagedResourceListOfParticipation

Implemented in Lusid.Sdk.Api.ParticipationsApi.

◆ UpsertParticipations()

ResourceListOfParticipation Lusid.Sdk.Api.IParticipationsApiSync.UpsertParticipations ( ParticipationSetRequest participationSetRequest = default(ParticipationSetRequest?),
int  operationIndex = 0 
)

[EARLY ACCESS] UpsertParticipations: Upsert Participation

Upsert; update existing participations with given ids, or create new participations otherwise.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
participationSetRequestThe collection of participation requests. (optional)
operationIndexIndex associated with the operation.
Returns
ResourceListOfParticipation

Implemented in Lusid.Sdk.Api.ParticipationsApi.

◆ UpsertParticipationsWithHttpInfo()

ApiResponse<ResourceListOfParticipation> Lusid.Sdk.Api.IParticipationsApiSync.UpsertParticipationsWithHttpInfo ( ParticipationSetRequest participationSetRequest = default(ParticipationSetRequest?),
int  operationIndex = 0 
)

[EARLY ACCESS] UpsertParticipations: Upsert Participation

Upsert; update existing participations with given ids, or create new participations otherwise.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
participationSetRequestThe collection of participation requests. (optional)
operationIndexIndex associated with the operation.
Returns
ApiResponse of ResourceListOfParticipation

Implemented in Lusid.Sdk.Api.ParticipationsApi.


The documentation for this interface was generated from the following file: