Get QueryAssist
Request
GET <REST API URL>/organizations/queryAssist?query=string&caret=int
Parameter | Description |
---|---|
query | Optional. Lets you specify a search query to filter the returned results. See Query Syntax for the definition of supported logical operations syntax. For the Organizations, the following fields and tuples are supported: accessible(for: user, with: role) — Returns organizations where the specified user has the specified role accessible(for: group, with: role) — Returns organizations where the specified group has the specified role accessible(for: user, with: permission) — Returns organizations where the specified user has the specified permission accessible(for: group, with: permission) — Returns organizations where the specified group has the specified permission accessible(for: user) — Returns organizations where the specified user has any permission accessible(for: group) — Returns organizations where the specified group has any permission accessible(with: role) — Returns organizations where somebody has the specified role accessible(with: permission) — Returns organizations where somebody has the specified permission after: instant — Returns organizations that were created after the specified moment before: instant — Returns organizations that were created before the specified moment group: group — Returns organizations that immediately contain the given group has: project — Returns organizations that contain at least one project has: user — Returns organizations that contain at least one user has: group — Returns organizations that contain at least one group has: team — Returns organizations that contain at least one project team id: value — Organization with the given ID name: organizationName — Returns organization with the specified name project: project — Returns organizations that immediately contain the given project team: team — Returns organizations that immediately contain the given project team user: user — Returns organizations that contain the given user |
caret | Query parameter of type int. |
Response
Response Code | Meaning |
---|---|
200 OK | Successful request. |
400 Bad Request | At least one of the request parameters is invalid. For example, a required field in the passed JSON object is missing. For details, check the error message in the response. |
403 Forbidden | The requester has no access to the requested resource. |
404 Not Found | The requested resource was not found. |
500 Internal Server Error | Failed to process request because of the server error. For details, check the error message in the response. |
Response body
{
"query": string,
"caret": int,
"styleRanges": [queryStyleRange, ...],
"suggestions": [querySuggestItem, ...]
}