public static async Task <HttpResponseMessage> DeleteWithClientCredentials(this ServiceHttpClient client, string uri)
        {
            await SetupClientCredentials(client);

            return(await client.DeleteAsync(uri));
        }