Support Users
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/support-users/ |
List Support Users |
| GET | /api/support-users/{uuid}/ |
Retrieve |
| POST | /api/support-users/ |
Create |
| PUT | /api/support-users/{uuid}/ |
Update |
| PATCH | /api/support-users/{uuid}/ |
Partial Update |
| DELETE | /api/support-users/{uuid}/ |
Delete |
| Other Actions | ||
| GET | /api/support-users/{uuid}/connections/ |
Connections |
| POST | /api/support-users/{uuid}/merge/ |
Merge |
Core CRUD
List Support Users
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- Model Source:
SupportUserOEnum - Model Source:
WALDURSUPPORTACTIVEBACKENDTYPEEnum - API Source:
support_users_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
backend_id |
string | |
backend_name |
string | Helpdesk Enum: basic, atlassian, zammad, smax |
is_active |
boolean | |
name |
string | |
o |
array | Ordering |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
query |
string | Search by name, backend ID or linked user name/email |
user |
integer |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | |
backend_id |
string | |
backend_name |
string | |
is_active |
boolean | Designates whether this user should be treated as active. Unselect this instead of deleting accounts. |
user |
string (uri) | |
user_full_name |
string | |
user_email |
string | |
reported_issues_count |
integer | |
assigned_issues_count |
integer | |
comments_count |
integer | |
attachments_count |
integer |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
support_users_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | |
backend_id |
string | |
backend_name |
string | |
is_active |
boolean | Designates whether this user should be treated as active. Unselect this instead of deleting accounts. |
user |
string (uri) | |
user_full_name |
string | |
user_email |
string | |
reported_issues_count |
integer | |
assigned_issues_count |
integer | |
comments_count |
integer | |
attachments_count |
integer |
Create
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
SupportUserRequest - API Source:
support_users_create
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required | Description |
|---|---|---|---|
name |
string | ✓ | |
backend_id |
string | ||
backend_name |
string | ||
is_active |
boolean | Designates whether this user should be treated as active. Unselect this instead of deleting accounts. | |
user |
string (uri) |
201 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | |
backend_id |
string | |
backend_name |
string | |
is_active |
boolean | Designates whether this user should be treated as active. Unselect this instead of deleting accounts. |
user |
string (uri) | |
user_full_name |
string | |
user_email |
string | |
reported_issues_count |
integer | |
assigned_issues_count |
integer | |
comments_count |
integer | |
attachments_count |
integer |
Update
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
SupportUserRequest - API Source:
support_users_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
name |
string | ✓ | |
backend_id |
string | ||
backend_name |
string | ||
is_active |
boolean | Designates whether this user should be treated as active. Unselect this instead of deleting accounts. | |
user |
string (uri) |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | |
backend_id |
string | |
backend_name |
string | |
is_active |
boolean | Designates whether this user should be treated as active. Unselect this instead of deleting accounts. |
user |
string (uri) | |
user_full_name |
string | |
user_email |
string | |
reported_issues_count |
integer | |
assigned_issues_count |
integer | |
comments_count |
integer | |
attachments_count |
integer |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedSupportUserRequest - API Source:
support_users_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
name |
string | ||
backend_id |
string | ||
backend_name |
string | ||
is_active |
boolean | Designates whether this user should be treated as active. Unselect this instead of deleting accounts. | |
user |
string (uri) |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | |
backend_id |
string | |
backend_name |
string | |
is_active |
boolean | Designates whether this user should be treated as active. Unselect this instead of deleting accounts. |
user |
string (uri) | |
user_full_name |
string | |
user_email |
string | |
reported_issues_count |
integer | |
assigned_issues_count |
integer | |
comments_count |
integer | |
attachments_count |
integer |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
support_users_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body
Other Actions
Connections
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
support_users_connections_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
reported_issues |
array of objects |
reported_issues.uuid |
string (uuid) |
reported_issues.key |
string |
reported_issues.type |
string |
reported_issues.summary |
string |
reported_issues.status |
string |
reported_issues.created |
string (date-time) |
reported_issues.modified |
string (date-time) |
assigned_issues |
array of objects |
assigned_issues.uuid |
string (uuid) |
assigned_issues.key |
string |
assigned_issues.type |
string |
assigned_issues.summary |
string |
assigned_issues.status |
string |
assigned_issues.created |
string (date-time) |
assigned_issues.modified |
string (date-time) |
comments |
array of objects |
comments.uuid |
string (uuid) |
comments.description |
string |
comments.is_public |
boolean |
comments.created |
string (date-time) |
comments.issue_key |
string |
comments.issue_uuid |
string (uuid) |
attachments |
array of objects |
attachments.uuid |
string (uuid) |
attachments.file_name |
string |
attachments.created |
string (date-time) |
attachments.issue_key |
string |
attachments.issue_uuid |
string (uuid) |
Merge
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
SupportUserMergeRequest - API Source:
support_users_merge
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
source_users |
array of string (uuid)s | ✓ | Support users to merge into this one. They will be deleted and their issues, comments and attachments re-pointed to this user. |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
name |
string | |
backend_id |
string | |
backend_name |
string | |
is_active |
boolean | Designates whether this user should be treated as active. Unselect this instead of deleting accounts. |
user |
string (uri) | |
user_full_name |
string | |
user_email |
string | |
reported_issues_count |
integer | |
assigned_issues_count |
integer | |
comments_count |
integer | |
attachments_count |
integer |