Sha256: 5b3785175d166a84b4056f08a08acc57ae5eac8193d07601ef60aa04ea64ae8e

Contents?: true

Size: 629 Bytes

Versions: 1

Compression:

Stored size: 629 Bytes

Contents

import * as HelloSignSDK from "hellosign-sdk";

const api = new HelloSignSDK.TeamApi();

// Configure HTTP basic authorization: api_key
api.username = "YOUR_API_KEY";

// or, configure Bearer (JWT) authorization: oauth2
// $config->setAccessToken("YOUR_ACCESS_TOKEN");

const data: HelloSignSDK.TeamRemoveMemberRequest = {
  emailAddress: "teammate@hellosign.com",
  newOwnerEmailAddress: "new_teammate@hellosign.com",
};

const result = api.teamRemoveMember(data);
result.then(response => {
  console.log(response.body);
}).catch(error => {
  console.log("Exception when calling HelloSign API:");
  console.log(error.body);
});

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hellosign-ruby-sdk-6.0.0.pre.beta oas/examples/TeamRemoveMember.ts