Skip to content

Latest commit

 

History

History
executable file
·
59 lines (40 loc) · 1.6 KB

DevelopersApi.md

File metadata and controls

executable file
·
59 lines (40 loc) · 1.6 KB

TubeBuddyNotificationApi.DevelopersApi

All URIs are relative to https://virtserver.swaggerhub.com/tubebuddy/tbtweet/1.0.0

Method HTTP request Description
searchUsers GET /tubebuddy searches users

searchUsers

[Item] searchUsers(opts)

searches users

By passing in the appropriate options, you can search for available inventory in the system

Example

import TubeBuddyNotificationApi from 'tube_buddy_notification_api';

let apiInstance = new TubeBuddyNotificationApi.DevelopersApi();

let opts = { 
  'searchString': "searchString_example", // String | pass an optional search string for looking up inventory
  'skip': 56, // Number | number of records to skip for pagination
  'limit': 56 // Number | maximum number of records to return
};

apiInstance.searchUsers(opts, (error, data, response) => {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
});

Parameters

Name Type Description Notes
searchString String pass an optional search string for looking up inventory [optional]
skip Number number of records to skip for pagination [optional]
limit Number maximum number of records to return [optional]

Return type

[Item]

Authorization

No authorization required

HTTP request headers

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