Class ApiKeysApi
Inheritance
System.Object
ApiKeysApi
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Account.ApiKeys
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class ApiKeysApi
Constructors
ApiKeysApi(IBitmovinApiClientFactory)
Declaration
public ApiKeysApi(IBitmovinApiClientFactory apiClientFactory)
Parameters
Type | Name | Description |
---|---|---|
IBitmovinApiClientFactory | apiClientFactory |
Properties
Builder
Fluent builder for creating an instance of ApiKeysApi
Declaration
public static BitmovinApiBuilder<ApiKeysApi> Builder { get; }
Property Value
Type | Description |
---|---|
BitmovinApiBuilder<ApiKeysApi> |
Methods
CreateAsync()
Create Api Key
Declaration
public Task<AccountApiKey> CreateAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<AccountApiKey> |
DeleteAsync(String)
Delete Api Key
Declaration
public Task<BitmovinResponse> DeleteAsync(string apiKeyId)
Parameters
Type | Name | Description |
---|---|---|
System.String | apiKeyId | Id of the api key (required) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<BitmovinResponse> |
GetAsync(String)
Get Api Key
Declaration
public Task<AccountApiKey> GetAsync(string apiKeyId)
Parameters
Type | Name | Description |
---|---|---|
System.String | apiKeyId | Id of the api key (required) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<AccountApiKey> |
ListAsync()
List Api Keys
Declaration
public Task<PaginationResponse<AccountApiKey>> ListAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<PaginationResponse<AccountApiKey>> |