Skip to main content

Netskope Help

Get User Configuration Data

This endpoint returns the user configuration items for specified users. You can retrieve the iOS mobile profile or Netskope Client config for a user.

Request Endpoint
GET https://<tenant-name>.goskope.com/api/v1/userconfig

Valid parameters are:

Key

Value

Description

email

Valid emailID

This is the email ID of the user for whom the iOS profile or agent config is to be fetched.

configtype

ios | agent

If the value is ios then the ios profile of the user is returned and if the value is 'agent' then the branding info for the user (the contents of the nsbranding.json) is returned.

Response

The response is in the standard format except the data will be an array with just one json entry with these structures:

For configtype iOS:

{ "email" : "a@mycompany.com", "profile" : "................" }

Note

For configtype agent:

{ "email" : "a@mycompany.com", "brandingdata" : {"SFCheckerHost":"sfchecker.goskope.com",......,"OrgName":"Shire"}
}

The iOS profile data will be an XML string, so it's recommended to copy and store the data in a file. This file would be the iOS profile config file. As the profile size is big (50+ KB), fetching only one profile at a time is supported.