Use service users and tokens to access Netzilo's public API

Service Users

Service users are non-interactive accounts that are used to create tokens to access resources and perform actions within your organization's network using Netzilo's public API.

Service users provide additional security by allowing you to limit the scope of access granted to the service user and void losing automated access to critical systems when employees leave the company.

What can you use Netzilo service users and access tokens for?

Most network management operations administrators do in the Netzilo Dashboard can also be done via Netzilo API using service users' access tokens.

The most common usage scenarios:

  • Automated scripts: if you need to run automated scripts or infrastructure as code tools like Ansible or Terraform that configure your Netzilo network.
  • Third-party integrations: if you want to integrate Netzilo with a third-party service, you can use a service user to provide access to your data without giving the third-party service access to your personal account. Command-line tools: if you use command-line tools like cUrl to interact with your Netzilo network.

Creating a service user

To create a service user, you'll need to log in to your organization's account at https://app.netzilo.com and navigate to the "Team" -> "Service Users" section of your account.

service-user-overview

From there, you can create a new service user and specify a role that the user should have. User role allows read-only access, use the admin for write access.

service-user-creation-popup

Creating an access token

To create an access token, you'll need to log in to your account and navigate to the "Team" section and look for your user or create a service user to use for your API requests.

personal-access-token-overview

From there, you can create a new token and specify expiration for the token. You won't be able to modify your token.

personal-access-creation-popup

After the token was generated successfully you will see a plain version of your token to copy and store in a secure place. Be aware that once you close the popup it is impossible to see the plain version of the token again as Netzilo only stores a hashed version of the token.

personal-access-token-example

Using access tokens

Once you have created an access token, you can use it to authenticate API requests to Netzilo. See Netzilo API documentation for detailed usage.

For example, if you were using the API, you might include your personal access token like this:

Example request with personal access token

curl https://api.netzilo.com/api/users \
  -H "Authorization: Token {token}"

With this header included, the Netzilo API would authenticate your request using your personal access token and grant you access to the resources that your user has been authorized to.