lib/client/sf-gate/docs/RolesApi.md

1.7 KiB

SfGate.RolesApi

All URIs are relative to http://sf-gate.vernonkeenan.com:8080/v1

Method HTTP request Description
getRoles GET /roles Get a list of Roles

getRoles

RoleResponse getRoles(opts)

Get a list of Roles

Return a list of Roles

Example

import SfGate from 'sf_gate';
let defaultClient = SfGate.ApiClient.instance;
// Configure API key authorization: ApiKeyAuth
let ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
ApiKeyAuth.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.apiKeyPrefix = 'Token';

let apiInstance = new SfGate.RolesApi();
let opts = {
  'limit': 789, // Number | How many objects to return at one time
  'offset': 789, // Number | How many objects to skip?
  'roleId': "roleId_example" // String | Taxnexus Id of the Role to be retrieved
};
apiInstance.getRoles(opts, (error, data, response) => {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
});

Parameters

Name Type Description Notes
limit Number How many objects to return at one time [optional]
offset Number How many objects to skip? [optional]
roleId String Taxnexus Id of the Role to be retrieved [optional]

Return type

RoleResponse

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json