Skip to content

Remote Eduteams

Operations Summary

Method Endpoint Description
POST /api/remote-eduteams/ Allows to pull user details from remote eduTEAMS instance

Allows to pull user details from remote eduTEAMS instance

Allows to pull user details from remote eduTEAMS instance.

1
2
3
4
5
http \
  POST \
  https://api.example.com/api/remote-eduteams/ \
  Authorization:"Token YOUR_API_TOKEN" \
  cuid="string-value"
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
from waldur_api_client.client import AuthenticatedClient
from waldur_api_client.models.remote_eduteams_request_request import RemoteEduteamsRequestRequest # (1)
from waldur_api_client.api.remote_eduteams import remote_eduteams # (2)

client = AuthenticatedClient(
    base_url="https://api.example.com", token="YOUR_API_TOKEN"
)

body_data = RemoteEduteamsRequestRequest(
    cuid="string-value"
)
response = remote_eduteams.sync(
    client=client,
    body=body_data
)

print(response)
  1. Model Source: RemoteEduteamsRequestRequest
  2. API Source: remote_eduteams
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import { remoteEduteams } from 'waldur-js-client';

try {
  const response = await remoteEduteams({
  auth: "Token YOUR_API_TOKEN",
  body: {
    "cuid": "string-value"
  }
});
  console.log('Success:', response);
} catch (error) {
  console.error('Error:', error);
}
Field Type Required
cuid string

200 -

Field Type
uuid string (uuid)