Entity Search
Partner and entity search functionality
Paste a Bearer JWT here. Two token types are accepted:
Connect1 User Tokens — issued by the Connect1 identity service. Copy the token from your Connect1 session.
Azure AD M2M — use the azureClientCredentials scheme below to get a token, then paste it here.
The name of the partner you would like to search for
List of matching partners
Unauthorized
GET /v1/partners/{searchTerm} HTTP/1.1
Host: localhost:8080
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"label": "text",
"companyName": "text",
"departmentName": "text",
"companyId": 1,
"departmentId": 1,
"documentId": 1,
"tags": [
{
"tag": "text"
}
]
}
]Search for partners using natural language queries. This endpoint uses AI-powered semantic search to understand the intent of your query and find relevant partners based on their capabilities, technologies, industries, and descriptions.
Only returns partners that are interactable based on your community access.
Examples:
"partners who handle AWS networking"
"companies specializing in retail logistics"
"database migration experts"
Paste a Bearer JWT here. Two token types are accepted:
Connect1 User Tokens — issued by the Connect1 identity service. Copy the token from your Connect1 session.
Azure AD M2M — use the azureClientCredentials scheme below to get a token, then paste it here.
Natural language search query describing what kind of partner you're looking for
partners specializing in cloud infrastructure and AWSMaximum number of results to return
10List of matching interactable partners ranked by relevance
Bad request
Unauthorized
GET /v1/partners/search?query=text HTTP/1.1
Host: localhost:8080
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"label": "text",
"companyName": "text",
"departmentName": "text",
"companyId": 1,
"departmentId": 1,
"documentId": 1,
"tags": [
{
"tag": "text"
}
]
}
]Last updated