Private Access REST APIs

Private Access REST APIs

This topic explains how to use the new REST API v2 pages in the Netskope UI for Private Access Publishers and Private Apps.

Netskope REST APIs use an auth token to make authorized calls to the API. Netskope REST APIs provide access to resources via URI paths. The token must be used in every REST API call for the tenant. The token can be created for use with specified APIs in the Netskope UI by going to Settings > Tools > Rest API v2.

At the top of the page there are three items:

RESTAPIpageOptions.png
  • REST API Status: Shows the status and allows you to enable or disable all of the REST API tokens for this tenant. Click the pencil icon to open this dialog when you want to enable or disable all tokens.
    RESTAPIenable.png
  • Global Rate Limit: Shows the requests per second. Private Access supports up to four requests per second.
  • Reference: This link opens the Swagger API documentation. For use information, go to the Swagger API Documentation section below.

Create a New Token

  1. On the REST API v2 page, click New Token.
    RESTAPIv2.png
  2. Enter a token name, the token expiration time, and then click Add Endpoint to select the API endpoints to use with the token. The infrastructure endpoints are used for the Publisher APIs. The steering endpoints are used for the Private Apps APIs.
  3. Specify the privileges for each of the endpoints added. Read privileges include GET, and Read+Write privileges include GET, PUT, POST, PATCH, and DELETE.
    NPA-Token.png
  4. When finished, click Save.
  5. A confirmation box opens showing whether the token creation was a success. If so, click Copy Token to save it for later use in your API requests. Add the token to the Netskope-Api-Token header.

    Important

    The only opportunity to copy the token is immediately after you create it. The token is required in your API requests.

    RESTAPItokenCopy.png

    When finished, click OK.

After being created, tokens can be managed by clicking the adjacent icon for the token and selecting one of these options:

RESTAPIeditMenu.png

For example, to reset the token expiration time, Change Expiration. Specify the number of hours, days, weeks, or months to keep the token valid, and then click Save.

RESTAPIchangeToken.png

For a standard token rotation over a given time period (like changing passwords every 90 days, for example), or in the event of a compromise/leak, you’ll want to revoke and reissue a new token.

Swagger API Documentation

To see API parameters information, click the API Documentation link on the REST API v2 page or in the Create REST API Token dialog box, which opens the Swagger UI. Available endpoints, methods, and parameters are displayed.

To view endpoint payload information in Swagger:

  1. Click on one of the endpoints, like infrastructure, to see the parameters available. The infrastructure endpoints are used for the Publisher APIs.
    NPA-Publisher-V2.png

    The steering endpoints are used for the Private Apps APIs.

    NPA-Private-Apps-V2.png
  2. Parameter descriptions provide information about the available values, format requirements, and factors related to use with other parameters. Some parameters provide dropdown lists for supported options, other parameters use text field entries.
  3. Copy the endpoint Request URL and parameters to use in your API calls. Make sure the token is added to the Netskope-Api-Token header before sending requests; otherwise, you will get an error.

Publisher APIs

  • Create a Publisher: Go to https://<tenant-URL>/apidocs/#/infrastructure/post_api_v2_infrastructure_publishers
  • Get a Publisher: Go to https://<tenant-URL>/apidocs/#/infrastructure/get_api_v2_infrastructure_publishers__publisher_id_
  • Get a list of Publishers: Go to https://<tenant-URL>/apidocs/#/infrastructure/get_api_v2_infrastructure_publishers
  • Update a Publisher: Go to https://<tenant-URL>/apidocs/#/infrastructure/put_api_v2_infrastructure_publishers__publisher_id_
  • Patch a Publisher: Go to https://<tenant-URL>/apidocs/#/infrastructure/patch_api_v2_infrastructure_publishers__publisher_id_
  • Delete a Publisher: Go to https://<tenant-URL>/apidocs/#/infrastructure/delete_api_v2_infrastructure_publishers__publisher_id_

Private Apps APIs

  • Create a Private App: Go to https://<tenant-URL>/apidocs/#/steering/post_api_v2_steering_apps_private
  • Get a Private App: Go to https://<tenant-URL>/apidocs/#/steering/get_api_v2_steering_apps_private__private_app_id_
  • Get a list of Private Apps: Go to https://<tenant-URL>/apidocs/#/steering/get_api_v2_steering_apps_private
  • Update a Private App: Go to https://<tenant-URL>/apidocs/#/steering/put_api_v2_steering_apps_private__private_app_id_
  • Patch a Private App: Go to https://<tenant-URL>/apidocs/#/steering/patch_api_v2_steering_apps_private__private_app_id_
  • Delete a Private App: Go to https://<tenant-URL>/apidocs/#/steering/delete_api_v2_steering_apps_private__private_app_id_

API Parameters

KeyTypeExampleDescription
tokenstring"token":"<your_token>"Required. Obtain the REST API token from the Netskope UI. To learn how to generate a token, see Create a New Token.

We recommend that you place the token in the request header, not in the endpoint URL.

app_namestring"app_name": "<application_name>"Required. Name of the private app(s).
hoststring"host":"host.com"Required. Enter a FQDN, wild card domain, IP subnet, or IP address.
publishersarray"publisher_id":"office-hq"

"publisher_name":"office-private-apps"

Required. The name and/or ID of the Publisher that provides access to this application.
private_app_idstring"private_app_id":"office-365"Required. The ID of the Private App being accessed.
protocolsarray"type":"tcp"

"port":"80"

"ports":"80,8010-8050"

Required. Defines the protocol type and port(s). Type values are tcp or udp.
private_app_protocolboolean"private_app_protocol":"https"Optional. Protocol used by the private app. Values are http or https.
clientless-accessboolean"clientless_access": trueOptional. Enables Browser Access for Private Apps. Values are true or false. Default is false.
use_publisher_dnsboolean"use_publisher_dns": trueOptional. Enables the Publisher DNS option. Values are  true or false. Default is false.
trust_self_signed_certsboolean"trust_self_signed_certs": trueOptional. Enable if Trusted self-signed certificates should be used for Browser Access. Values are true or false. Default is false.
fieldsstringfields: id, name, host}Optional. Returns the specified fields in the JSON object for the Get method
silentboolean "silent": 1Optional. Shows status code but skips data code. Values are 1 (true) or 0 (false). Default is 0.
Share this Doc

Private Access REST APIs

Or copy link

In this topic ...