All URIs are relative to http://localhost:8080/engine-rest
Method | HTTP request | Description |
---|---|---|
add_identity_link | post /task/{id}/identity-links | |
delete_identity_link | post /task/{id}/identity-links/delete | |
get_identity_links | get /task/{id}/identity-links |
add_identity_link(id, identity_link_dto)
Adds an identity link to a task by id. Can be used to link any user or group to a task and specify a relation.
Name | Type | Description | Required | Notes |
---|---|---|---|---|
id | String | The id of the task to add a link to. | [required] | |
identity_link_dto | Option<IdentityLinkDto> |
(empty response body)
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_identity_link(id, identity_link_dto)
Removes an identity link from a task by id
Name | Type | Description | Required | Notes |
---|---|---|---|---|
id | String | The id of the task to remove a link from. | [required] | |
identity_link_dto | Option<IdentityLinkDto> |
(empty response body)
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Veccrate::models::IdentityLinkDto get_identity_links(id, _type)
Gets the identity links for a task by id, which are the users and groups that are in some relation to it (including assignee and owner).
Name | Type | Description | Required | Notes |
---|---|---|---|---|
id | String | The id of the task to retrieve the identity links for. | [required] | |
_type | Option<String> | Filter by the type of links to include. |
Veccrate::models::IdentityLinkDto
No authorization required
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]