Interface IUGCTagApi
Represents a collection of functions to interact with the API endpoints
Namespace: Unity.Services.Apis.UGC
Assembly: solution.dll
Syntax
public interface IUGCTagApi : IApiAccessor
Methods
GetTags(string, string, CancellationToken)
Get all tags
Declaration
ApiOperation<List<TagDTO>> GetTags(string projectId, string environmentId, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| string | projectId | |
| string | environmentId | |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| ApiOperation<List<TagDTO>> | The operation |
GetTagsDefaultEnv(string, CancellationToken)
Get all tags
Declaration
[Obsolete]
ApiOperation<List<TagDTO>> GetTagsDefaultEnv(string projectId, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| string | projectId | |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| ApiOperation<List<TagDTO>> | The operation |