Skip to content

Sync Issues

Operations Summary

Method Endpoint Description
Core CRUD
GET /api/sync-issues/ This view triggers synchronization of issues from backend
Other Actions
POST /api/sync-issues/ This view triggers synchronization of issues from backend

Core CRUD

This view triggers synchronization of issues from backend

This view triggers synchronization of issues from backend.

1
2
3
4
http \
  GET \
  https://api.example.com/api/sync-issues/ \
  Authorization:"Token YOUR_API_TOKEN"
1
2
3
4
5
6
7
8
9
from waldur_api_client.client import AuthenticatedClient
from waldur_api_client.api.sync_issues import sync_issues_retrieve # (1)

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

print(response)
  1. API Source: sync_issues_retrieve
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
import { syncIssuesRetrieve } from 'waldur-js-client';

try {
  const response = await syncIssuesRetrieve({
  auth: "Token YOUR_API_TOKEN"
});
  console.log('Success:', response);
} catch (error) {
  console.error('Error:', error);
}

202 - No response body


403 - No response body


Other Actions

This view triggers synchronization of issues from backend

This view triggers synchronization of issues from backend.

1
2
3
4
http \
  POST \
  https://api.example.com/api/sync-issues/ \
  Authorization:"Token YOUR_API_TOKEN"
1
2
3
4
5
6
7
8
9
from waldur_api_client.client import AuthenticatedClient
from waldur_api_client.api.sync_issues import sync_issues # (1)

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

print(response)
  1. API Source: sync_issues
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
import { syncIssues } from 'waldur-js-client';

try {
  const response = await syncIssues({
  auth: "Token YOUR_API_TOKEN"
});
  console.log('Success:', response);
} catch (error) {
  console.error('Error:', error);
}

202 - No response body


403 - No response body