Skip to content

Latest commit

 

History

History
executable file
·
37 lines (23 loc) · 1.42 KB

File metadata and controls

executable file
·
37 lines (23 loc) · 1.42 KB

CollaboratorsDetailsV2

(collaboratorsDetailsV2)

Available Operations

  • get - Get a list of collaborators and their details

get

Get a list of collaborators and their details

Example Usage

import { Wingspan } from "wingspan";
import { GetCollaboratorsDetailsV2Response } from "wingspan/dist/sdk/models/operations";

const sdk = new Wingspan();

sdk.collaboratorsDetailsV2.get().then((res: GetCollaboratorsDetailsV2Response) => {
  if (res.statusCode == 200) {
    // handle response
  }
});

Parameters

Parameter Type Required Description
config AxiosRequestConfig Available config options for making requests.

Response

Promise<operations.GetCollaboratorsDetailsV2Response>