ListPossibleAssigneesRequest¶
Source definition: src/bitdrift/public/unary/issues/v1/issues.proto#L481-L506
| Field | Type | Description |
|---|---|---|
| search | optional string between 1 and 255 chars |
Filter assignees by text match. |
| user_ids | array of string up to 100 items |
Filter assignees to those with matching user IDs. |
| offset | optional uint32 | The starting offset for pagination. For example, set this to 10 to start with the 10th record. Defaults to 0. |
| limit | optional uint32 between 1 and 100 |
The maximum number of items to return. The server returns at most min(items.count, limit, 100) items. |
Example¶
JSON
{
"limit": 25,
"offset": 1,
"search": "jane"
}