Class ClientGrantsClient
- Namespace
- Auth0.Management
Api .Clients
- Assembly
- Auth0.ManagementApi.dll
Contains methods to access the /client-grants endpoints.
- Inheritance
-
Client
Grants Client
- Implements
- Inherited Members
Constructors
ClientGrantsClient(IManagementConnection, Uri, IDictionary<string, string>)
Initializes a new instance of Client
public ClientGrantsClient(IManagementConnection connection, Uri baseUri, IDictionary<string, string> defaultHeaders)
Parameters
connection
IManagementConnection IManagement
Connection used to make all API calls.baseUri
UriUri of the endpoint to use in making API calls.
defaultHeaders
IDictionary<string, string>Dictionary containing default headers included with every request this client makes.
Methods
CreateAsync(ClientGrantCreateRequest, CancellationToken)
Creates a new client grant.
public Task<ClientGrant> CreateAsync(ClientGrantCreateRequest request, CancellationToken cancellationToken = default)
Parameters
request
ClientGrant Create Request The Client
Grant containing the properties of the Client Grant.Create Request cancellationToken
CancellationToken The cancellation token to cancel operation.
Returns
- Task<Client
Grant > The new Client
Grant that has been created.
DeleteAsync(string, CancellationToken)
Deletes a client grant.
Parameters
id
stringThe identifier of the Client Grant to delete.
cancellationToken
CancellationToken The cancellation token to cancel operation.
Returns
GetAllAsync(GetClientGrantsRequest, PaginationInfo, CancellationToken)
Gets a list of all the client grants.
public Task<IPagedList<ClientGrant>> GetAllAsync(GetClientGrantsRequest request, PaginationInfo pagination = null, CancellationToken cancellationToken = default)
Parameters
request
GetClient Grants Request Specifies criteria to use when querying client grants.
pagination
PaginationInfo Specifies Pagination
Info to use in requesting paged results.cancellationToken
CancellationToken The cancellation token to cancel operation.
Returns
- Task<IPaged
List <ClientGrant >> A IPagedList<T> containing the client grants requested.
GetAllOrganizationsAsync(string, CheckpointPaginationInfo, CancellationToken)
Get the organizations associated to a client grant
public Task<IPagedList<Organization>> GetAllOrganizationsAsync(string id, CheckpointPaginationInfo pagination = null, CancellationToken cancellationToken = default)
Parameters
id
stringThe identifier of the client grant.
pagination
CheckpointPagination Info Specifies Checkpoint
Pagination to use in requesting checkpoint-paginated results.Info cancellationToken
CancellationToken The cancellation token to cancel operation.
Returns
- Task<IPaged
List <Organization>> A IPagedList<T> containing the organizations requested.
GetAllOrganizationsAsync(string, PaginationInfo, CancellationToken)
Get the organizations associated to a client grant
public Task<IPagedList<Organization>> GetAllOrganizationsAsync(string id, PaginationInfo pagination, CancellationToken cancellationToken = default)
Parameters
id
stringThe identifier of the client grant.
pagination
PaginationInfo Specifies Pagination
Info to use in requesting paged results.cancellationToken
CancellationToken The cancellation token to cancel operation.
Returns
- Task<IPaged
List <Organization>> A IPagedList<T> containing the organizations requested.
GetAllOrganizationsAsync(string, CancellationToken)
Get the organizations associated to a client grant
public Task<IPagedList<Organization>> GetAllOrganizationsAsync(string id, CancellationToken cancellationToken = default)
Parameters
id
stringThe identifier of the client grant.
cancellationToken
CancellationToken The cancellation token to cancel operation.
Returns
- Task<IPaged
List <Organization>> A IPagedList<T> containing the organizations requested.
UpdateAsync(string, ClientGrantUpdateRequest, CancellationToken)
Updates a client grant.
public Task<ClientGrant> UpdateAsync(string id, ClientGrantUpdateRequest request, CancellationToken cancellationToken = default)
Parameters
id
stringThe identifier of the client grant to update.
request
ClientGrant Update Request The Client
Grant containing the properties to update.Update Request cancellationToken
CancellationToken The cancellation token to cancel operation.
Returns
- Task<Client
Grant > The Client
Grant that has been updated.