Skip to main content
GET
/
api
/
core
/
sharepoint
/
configuration
Get SharePoint configurations
curl --request GET \
  --url https://api.example.com/api/core/sharepoint/configuration \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "knowledge_source_id": "<string>",
    "discovered_settings": {
      "selection_items": []
    },
    "connection_settings": {
      "site_name": "<string>",
      "domain": "<string>",
      "base": "sites"
    },
    "type": "sharepoint",
    "sync_status": "Not yet synced",
    "synced_issues_count": 0,
    "last_successful_sync": "2023-11-07T05:31:56Z",
    "credential_id": "<string>",
    "most_recent_sync_job_id": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer token authentication. Format: 'Bearer '

Response

200 - application/json

Successful Response

id
string
required
knowledge_source_id
string
required
discovered_settings
FinderViewDiscoveredSettings[StructureItem] · object
required
connection_settings
SharepointConnectionSettings · object
required
type
enum<string>
default:sharepoint
Available options:
sharepoint
Allowed value: "sharepoint"
sync_status
enum<string>
default:Not yet synced
Available options:
Not yet synced,
Syncing,
Synced,
Failed,
Sync status not available
synced_issues_count
integer
default:0
last_successful_sync
string<date-time> | null
credential_id
string | null
most_recent_sync_job_id
string | null