Back to Apitable

.WorkbenchNodeRoleApiApi

packages/api-client/WorkbenchNodeRoleApiApi.md

1.13.0-beta.11.7 KB
Original Source

.WorkbenchNodeRoleApiApi

All URIs are relative to http://backend/api/v1

MethodHTTP requestDescription
getCollaboratorInfoGET /node/collaborator/infoGet Collaborator Info

getCollaboratorInfo

ResponseDataNodeCollaboratorVO getCollaboratorInfo()

Scene: Collaborator Card Information

Example

typescript
import {  } from '';
import * as fs from 'fs';

const configuration = .createConfiguration();
const apiInstance = new .WorkbenchNodeRoleApiApi(configuration);

let body:.WorkbenchNodeRoleApiApiGetCollaboratorInfoRequest = {
  // string
  uuid: "1",
  // string
  nodeId: "nodRTGSy43DJ9",
  // string | space id
  xSpaceId: "spcyQkKp9XJEl",
};

apiInstance.getCollaboratorInfo(body).then((data:any) => {
  console.log('API called successfully. Returned data: ' + data);
}).catch((error:any) => console.error(error));

Parameters

NameTypeDescriptionNotes
uuid[string]defaults to undefined
nodeId[string]defaults to undefined
xSpaceId[string]space iddefaults to undefined

Return type

ResponseDataNodeCollaboratorVO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: /

HTTP response details

Status codeDescriptionResponse headers
200OK-
500Internal Server Error-

[Back to top] [Back to API list] [Back to Model list] [Back to README]