Skip to content

Commit

Permalink
the boolean must be lowercase.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmclaws committed May 1, 2024
1 parent ab45ace commit be10c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auth0.ManagementApi/Clients/ActionsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public Task<CodeAction> UpdateAsync(string id, UpdateActionRequest request, Canc
/// <returns>A <see cref="Task"/> that represents the asynchronous delete operation.</returns>
public Task DeleteAsync(string id, DeleteActionRequest request = null, CancellationToken cancellationToken = default)
{
return Connection.SendAsync<object>(HttpMethod.Delete, BuildUri($"{ActionsBasePath}/{ActionsPath}/{EncodePath(id)}", new Dictionary<string, string> { { "force", request.Force.ToString() } }), null, DefaultHeaders, cancellationToken: cancellationToken);
return Connection.SendAsync<object>(HttpMethod.Delete, BuildUri($"{ActionsBasePath}/{ActionsPath}/{EncodePath(id)}", new Dictionary<string, string> { { "force", request.Force.ToString().ToLower() } }), null, DefaultHeaders, cancellationToken: cancellationToken);
}


Expand Down

0 comments on commit be10c3d

Please sign in to comment.