fr_search_users
Search for users within a Freshrelease project by name or email address to identify team members and assign tasks.
Instructions
Search users in a project by name or email.
Calls `/{project_identifier}/users?q=search_text` and returns the JSON response.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_identifier | Yes | ||
search_text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_identifier": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Project Identifier"
},
"search_text": {
"title": "Search Text",
"type": "string"
}
},
"required": [
"project_identifier",
"search_text"
],
"title": "fr_search_usersArguments",
"type": "object"
}