mirror of https://github.com/vernonkeenan/lib
4.0 KiB
4.0 KiB
SfGate.TenantsApi
All URIs are relative to http://sf-gate.vernonkeenan.com:8080/v1
Method | HTTP request | Description |
---|---|---|
getTenants | GET /tenants | Get a list Tenants |
putTenants | PUT /tenants | Update Tenants |
tenants | POST /tenants | Create new Tenants |
getTenants
TenantResponse getTenants(opts)
Get a list Tenants
Return a list of Tenant records from the datastore
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.TenantsApi();
let opts = {
'tenantId': "tenantId_example", // String | Taxnexus Record Id of a Tenant
'limit': 789, // Number | How many objects to return at one time
'offset': 789 // Number | How many objects to skip?
};
apiInstance.getTenants(opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Parameters
Name | Type | Description | Notes |
---|---|---|---|
tenantId | String | Taxnexus Record Id of a Tenant | [optional] |
limit | Number | How many objects to return at one time | [optional] |
offset | Number | How many objects to skip? | [optional] |
Return type
Authorization
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
putTenants
TenantResponse putTenants(cTenantRequest)
Update Tenants
Update Tenant in Taxnexus
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.TenantsApi();
let cTenantRequest = new SfGate.TenantRequest(); // TenantRequest | An array of Tenant records
apiInstance.putTenants(cTenantRequest, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Parameters
Name | Type | Description | Notes |
---|---|---|---|
cTenantRequest | TenantRequest | An array of Tenant records |
Return type
Authorization
HTTP request headers
- Content-Type: application/json
- Accept: application/json
tenants
TenantResponse tenants(cTenantRequest)
Create new Tenants
Create Tenants in Taxnexus
Example
import SfGate from 'sf_gate';
let apiInstance = new SfGate.TenantsApi();
let cTenantRequest = new SfGate.TenantRequest(); // TenantRequest | An array of Tenant records
apiInstance.tenants(cTenantRequest, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Parameters
Name | Type | Description | Notes |
---|---|---|---|
cTenantRequest | TenantRequest | An array of Tenant records |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json