Support Issues
Operations Summary
| Method |
Endpoint |
Description |
| Core CRUD |
|
|
| GET |
/api/support-issues/ |
List Support Issues |
| GET |
/api/support-issues/{uuid}/ |
Retrieve |
| POST |
/api/support-issues/ |
Create |
| PUT |
/api/support-issues/{uuid}/ |
Update |
| PATCH |
/api/support-issues/{uuid}/ |
Partial Update |
| DELETE |
/api/support-issues/{uuid}/ |
Delete |
| Other Actions |
|
|
| POST |
/api/support-issues/{uuid}/comment/ |
Comment |
| POST |
/api/support-issues/{uuid}/sync/ |
Sync |
Core CRUD
List Support Issues
Retrieve
Create
Update
| http \
PUT \
https://api.example.com/api/support-issues/a1b2c3d4-e5f6-7890-abcd-ef1234567890/ \
Authorization:"Token YOUR_API_TOKEN" \
type="string-value" \
summary="string-value"
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | from waldur_api_client.client import AuthenticatedClient
from waldur_api_client.models.issue_request import IssueRequest # (1)
from waldur_api_client.api.support_issues import support_issues_update # (2)
client = AuthenticatedClient(
base_url="https://api.example.com", token="YOUR_API_TOKEN"
)
body_data = IssueRequest(
type="string-value",
summary="string-value"
)
response = support_issues_update.sync(
uuid="a1b2c3d4-e5f6-7890-abcd-ef1234567890",
client=client,
body=body_data
)
print(response)
|
- Model Source:
IssueRequest
- API Source:
support_issues_update
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 | import { supportIssuesUpdate } from 'waldur-js-client';
try {
const response = await supportIssuesUpdate({
auth: "Token YOUR_API_TOKEN",
path: {
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
},
body: {
"type": "string-value",
"summary": "string-value"
}
});
console.log('Success:', response);
} catch (error) {
console.error('Error:', error);
}
|
| Name |
Type |
Required |
uuid |
string (uuid) |
✓ |
| Field |
Type |
Required |
Description |
type |
string |
✓ |
|
remote_id |
string |
|
|
summary |
string |
✓ |
|
description |
string |
|
|
priority |
string |
|
|
caller |
string (uri) |
|
|
assignee |
string (uri) |
|
|
customer |
string (uri) |
|
|
project |
string (uri) |
|
|
resource |
string |
|
|
is_reported_manually |
boolean |
|
Set true if issue is created by regular user via portal. Constraints: write-only, default: False |
template |
string (uri) |
|
|
200 -
| Field |
Type |
Description |
url |
string (uri) |
|
uuid |
string (uuid) |
|
type |
string |
|
key |
string |
|
backend_id |
string |
|
backend_name |
string |
|
remote_id |
string |
|
link |
string (uri) |
Link to issue in support system. |
summary |
string |
|
description |
string |
|
status |
string |
|
resolution |
string |
|
priority |
string |
|
caller |
string (uri) |
|
caller_uuid |
string (uuid) |
|
caller_full_name |
string |
|
reporter |
string (uri) |
|
reporter_uuid |
string (uuid) |
|
reporter_name |
string |
|
assignee |
string (uri) |
|
assignee_uuid |
string (uuid) |
|
assignee_name |
string |
|
customer |
string (uri) |
|
customer_uuid |
string (uuid) |
|
customer_name |
string |
|
project |
string (uri) |
|
project_uuid |
string (uuid) |
|
project_name |
string |
|
resource |
string |
|
resource_type |
string |
|
resource_name |
string |
|
created |
string (date-time) |
|
modified |
string (date-time) |
|
template |
string (uri) |
|
feedback |
any |
|
resolved |
boolean |
|
update_is_available |
boolean |
|
destroy_is_available |
boolean |
|
add_comment_is_available |
boolean |
|
add_attachment_is_available |
boolean |
|
Partial Update
Delete
Other Actions
Sync
| http \
POST \
https://api.example.com/api/support-issues/a1b2c3d4-e5f6-7890-abcd-ef1234567890/sync/ \
Authorization:"Token YOUR_API_TOKEN" \
type="string-value" \
summary="string-value"
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | from waldur_api_client.client import AuthenticatedClient
from waldur_api_client.models.issue_request import IssueRequest # (1)
from waldur_api_client.api.support_issues import support_issues_sync # (2)
client = AuthenticatedClient(
base_url="https://api.example.com", token="YOUR_API_TOKEN"
)
body_data = IssueRequest(
type="string-value",
summary="string-value"
)
response = support_issues_sync.sync(
uuid="a1b2c3d4-e5f6-7890-abcd-ef1234567890",
client=client,
body=body_data
)
print(response)
|
- Model Source:
IssueRequest
- API Source:
support_issues_sync
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 | import { supportIssuesSync } from 'waldur-js-client';
try {
const response = await supportIssuesSync({
auth: "Token YOUR_API_TOKEN",
path: {
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
},
body: {
"type": "string-value",
"summary": "string-value"
}
});
console.log('Success:', response);
} catch (error) {
console.error('Error:', error);
}
|
| Name |
Type |
Required |
uuid |
string (uuid) |
✓ |
| Field |
Type |
Required |
Description |
type |
string |
✓ |
|
remote_id |
string |
|
|
summary |
string |
✓ |
|
description |
string |
|
|
priority |
string |
|
|
caller |
string (uri) |
|
|
assignee |
string (uri) |
|
|
customer |
string (uri) |
|
|
project |
string (uri) |
|
|
resource |
string |
|
|
is_reported_manually |
boolean |
|
Set true if issue is created by regular user via portal. Constraints: write-only, default: False |
template |
string (uri) |
|
|
200 -
| Field |
Type |
Description |
url |
string (uri) |
|
uuid |
string (uuid) |
|
type |
string |
|
key |
string |
|
backend_id |
string |
|
backend_name |
string |
|
remote_id |
string |
|
link |
string (uri) |
Link to issue in support system. |
summary |
string |
|
description |
string |
|
status |
string |
|
resolution |
string |
|
priority |
string |
|
caller |
string (uri) |
|
caller_uuid |
string (uuid) |
|
caller_full_name |
string |
|
reporter |
string (uri) |
|
reporter_uuid |
string (uuid) |
|
reporter_name |
string |
|
assignee |
string (uri) |
|
assignee_uuid |
string (uuid) |
|
assignee_name |
string |
|
customer |
string (uri) |
|
customer_uuid |
string (uuid) |
|
customer_name |
string |
|
project |
string (uri) |
|
project_uuid |
string (uuid) |
|
project_name |
string |
|
resource |
string |
|
resource_type |
string |
|
resource_name |
string |
|
created |
string (date-time) |
|
modified |
string (date-time) |
|
template |
string (uri) |
|
feedback |
any |
|
resolved |
boolean |
|
update_is_available |
boolean |
|
destroy_is_available |
boolean |
|
add_comment_is_available |
boolean |
|
add_attachment_is_available |
boolean |
|