Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Knowledgeone Recfind6 Connector v2 #3258

Merged
merged 2 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,60 @@
}
]
}
},
"/SavedSearch": {
"get": {
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {}
}
}
}
},
"summary": "Saved Search",
"description": "Provides a table of results corresponding to the requested saved search and parameters",
"operationId": "SavedSearch",
"x-ms-visibility": "important",
"parameters": [
{
"name": "HostUrl",
"in": "query",
"required": false,
"type": "string",
"x-ms-summary": "Host URL",
"description": "URL of the server"
},
{
"name": "UserName",
"in": "query",
"required": false,
"type": "string",
"x-ms-summary": "User Name",
"description": "User making the request"
},
{
"name": "SavedSearchName",
"in": "query",
"required": false,
"type": "string",
"description": "Saved Search Name",
"x-ms-summary": "Name of the saved search"
},
{
"name": "QueryParams",
"in": "query",
"required": false,
"type": "string",
"description": "Saved Search Parameters",
"x-ms-summary": "Parameters to pass to the saved search"
}
]
}
},
"/SendFile": {
"post": {
Expand Down
2 changes: 2 additions & 0 deletions certified-connectors/Knowledgeone RecFind 6/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ For all functionality of the RecFind 6 Search Power App to be available, you wil

`QueryTable` Provides a table of results corresponding to the requested query and search parameters.

`SavedSearch` Provides a table of results corresponding to the requested saved search and search parameters.

`SendFile` Submit file contents and metadata for storage in the RecFind 6 database. Returns a URL to the stored file.

### Obtaining Credentials
Expand Down