module WolfCore::Integrations::ClientApiOperations
def update_client!(wolf_token:, client:, tenant:, wolf_platform_url:, error_message:, client_id:)
def update_client!(wolf_token:, client:, tenant:, wolf_platform_url:, error_message:, client_id:) safe_http_put( headers: { "Authorization" => "Bearer #{wolf_token}" }, query: { tenant: tenant }, url: "#{wolf_platform_url}/api/v2/companies/#{client_id}", body: client, error_message: error_message ) end