Recent Content
Hey, Robin! I currently use Okta to manage my users. How complicated is this to set up with Cato?
You know those situations where someone asks you a question, and you think to yourself "this is something that's going to be asked multiple times?" Yeah, this is one of them. While I was talking with a future Cato Customer, they asked a simple question about how difficult it would be to provision their users with SCIM into the Cato Management Application. Naturally they were hesitant (as this can be a mammoth task with many vendors), but with us, it's a pretty light-lift. Being the egotistical buffoon I am, I thought to record a video in a dimly lit hotel room. Of course we have fantastic product documentation that explains this procedure in detail, but some people are visual learners who want to see the 'final product' instead of the steps along the way. Remember, 5 hours of troubleshooting can often save you 10 minutes of reading the documentation 😀Robin_Johns15 days agoCato Employee40Views2likes1Comment- JM18 days agoComet28Views2likes2Comments
A simple example in Python
import json import ssl import urllib.parse import urllib.request headers = { "x-api-key": MY_API_KEY, "Content-Type": "application/json" } body = { "operationName": "accountSnapshot", "variables": {"accountID":MY_ACCOUNT_ID}, "query": ''' query accountSnapshot($accountID:ID!) { accountSnapshot(accountID:$accountID) { id } }''' } request = urllib.request.Request(url='https://api.catonetworks.com/api/v1/graphql2', data=json.dumps(body).encode("ascii"), headers=headers) response = urllib.request.urlopen(request, context=ssl._create_unverified_context()) print(json.loads(response.read().decode("utf-8","replace")))peter2 months agoCato Employee42Views2likes2CommentsWhat do you think about the new Cato Community?
What do you think about the new Cato Community?SolvedMikeOrtega2 months agoCato Employee47Views2likes3CommentsHow does Cato use AI?
Great Question! I've heard a few of our customers and partners ask this question, especially as Cato has appeared in the press more frequently with AI awards. So instead of writing a longform article, I thought I'd start explaining with a high-level overview of what AI/ML is, as well as giving you some examples on how it's applied here at Cato. This is by no means exhaustive (far from it), but we all have to start somewhere....Robin_Johns17 days agoCato Employee31Views1like1CommentNotifications on Cato Connect
If you’d like to change your notification settings, just click on your avatar, choose “my settings” Then click on "Follow & Notifications" Then make the changes you would like to make to your notification settings. If you’d like to receive email notifications, make sure this button is toggled on. Otherwise, your notifications will be only in the bell icon on Cato Connect. Everything here is set to immediate, but you can choose to get a daily or even weekly digest of information, totally up to you. Don’t forget to check out the advanced options at the very bottom of the page. We’re glad you’re here and we want to make Cato Connect as useful and engaging as possible. Start a discussion or email us with any ideas or questions!yumdarling18 days agoCommunity Manager12Views1like0CommentsCato API with Gradio
Hello, During the "AMA about Cato API" webinar, you presented a demo of API usages with Gradio. Will you eventually share the code examples that you used to make these dashboards ? I would like to reproduce something similar (hit rules, detected applications by rules..) Regards, Pierre23Views1like1Comment- Robin_Johns3 days agoCato Employee16Views1like0Comments