Get project suggestions
GET/v1/project/:project_name/activities/suggestions
Get project activities suggestions by type for autocomplete. Supported types:
- subject_name: Get suggestions for activity subject names in the project.
If the type isn't provided or provided incorrectly, you get a 404 error.
Request
Path Parameters
project_name stringrequired
Project name
Query Parameters
type string
Possible values: [subject_name
]
Type of suggestions
filter string
Filter query for suggestions
limit integer
Maximum number of suggestions
Responses
- 200
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
suggestions string[]
List of activities suggestions for the project by type.
limit integer
The limit used for this page of results. This will be the same as the limit query parameter unless it exceeded the maximum value allowed for this API endpoint.
count integer
The number of results returned in this page of results.
{
"suggestions": [
"string"
],
"limit": 0,
"count": 0
}
Not Found
Loading...