Skip to content

Latest commit

 

History

History
60 lines (38 loc) · 1.56 KB

AvailableActionsApi.md

File metadata and controls

60 lines (38 loc) · 1.56 KB

MergeAtsApi.AvailableActionsApi

All URIs are relative to https://api.merge.dev/api/ats/v1

Method HTTP request Description
availableActionsRetrieve GET /available-actions

availableActionsRetrieve

AvailableActions availableActionsRetrieve(xAccountToken)

Returns a list of models and actions available for an account.

Example

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

let apiInstance = new MergeAtsApi.AvailableActionsApi();
let xAccountToken = "xAccountToken_example"; // String | Token identifying the end user.
apiInstance.availableActionsRetrieve(xAccountToken, (error, data, response) => {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
});

Parameters

Name Type Description Notes
xAccountToken String Token identifying the end user.

Return type

AvailableActions

Authorization

tokenAuth

HTTP request headers

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