api:restrict

Version 22.0.8500


api:restrict

Version 22.0.8500


The api:restrict keyword allows you to restrict access to a service based on users and roles. This restriction is over and above any restrictions that you might enforce using ASP.NET.

If you add api:restrict to your script, only the users or roles specified will be able to use the service.

The api:restrict keyword can control access based on the following:

  • The specific user trying to execute the feed.
  • Whether the user is a member of a specified security role where a role maps to the roles defined by the ASP.NET authentication and authorization configuration.

You can have multiple api:restrict statements in a single script. They are evaluated with the logical OR operator.

Parameters

  • user: A comma-separated list of usernames. All users specified on the list will have access to the feed. Note that if you have Windows Integrated Authentication, you must ensure that usernames are domain- or machine-qualified (i.e., “DOMAIN\username”).
  • role: A comma-separated list of role names. Any user in at least one of the specified roles will have access to the feed.
  • authtoken: A comma-separated list of authtokens for users authorized to access the script. The authtoken can be supplied in HTTP Basic authentication, the x-cdata-authtoken header, or the @authtoken in the form-post data. If AllowtokeninURL is set in settings.cfg, @authtoken can also be provided in the query string.
  • visibility: Setting the visibility to “local” makes the script inaccessible directly from HTTP. However, you can still invoke the script through another script.

Control Attributes

None

Examples

Below are some examples of api:restrict:

Grant access only to the tomk and jdoe users:

<api:restrict user="newton\jdoe,newton\tomk"/>

Grant access only to a user in the “FeedConsumers” role:

<api:restrict role="FeedConsumers"/>

See Also

  • api:call: Call scripts, operations, or feeds.