Endpoint#
| Property | Value |
|---|
| Type | query |
| Method | GET |
| Path | /api/external/v1/search_potential_space_members |
| Handler | OperatelyWeb.Api.Queries.SearchPotentialSpaceMembers |
Authentication#
- Requires a valid API token.
- Read-only and full-access tokens can execute this query.
| Field | Type | Required | Nullable | Default |
|---|
group_id | string | No | Yes | - |
query | string | No | Yes | - |
exclude_ids | array of string | No | Yes | - |
limit | integer | No | Yes | - |
Outputs#
| Field | Type | Required | Nullable |
|---|
people | array of person object | No | Yes |
cURL Example#
Copiedcurl --request GET \
--url "https://app.operately.com/api/external/v1/search_potential_space_members?exclude_ids[]=value&group_id=value&limit=123&query=value" \
--header "Authorization: Bearer ${OPERATELY_API_TOKEN}"
Response Example#
{
"people": [
{
"access_level": 123,
"agent_def": "<agent_def>",
"avatar_blob_id": "value",
"avatar_url": "value",
"company": "<company>",
"description": "value",
"email": "value",
"full_name": "value",
"has_open_invitation": true,
"id": "value",
"invite_link": "<invite_link>",
"manager": "<person>",
"notify_about_assignments": true,
"notify_on_mention": true,
"peers": [
"<person>"
],
"permissions": "<person_permissions>",
"reports": [
"<person>"
],
"send_daily_summary": true,
"show_dev_bar": true,
"suspended": true,
"timezone": "value",
"title": "value",
"type": "value"
}
]
}