Skip to main content
GET
https://prod-api.raisedonors.com
/
api
/
org-knowledge
List Knowledge Sources
curl --request GET \
  --url https://prod-api.raisedonors.com/api/org-knowledge \
  --header 'Authorization: <api-key>'
[
  {
    "id": 123,
    "title": "<string>",
    "description": "<string>",
    "content": "<string>",
    "blobPath": "<string>",
    "sourceUrl": "<string>",
    "lastIndexedUtc": "2023-11-07T05:31:56Z",
    "indexError": "<string>",
    "isActive": true,
    "createdDateTimeUtc": "2023-11-07T05:31:56Z",
    "modifiedDateTimeUtc": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

Response

OK

id
integer<int64>
title
string | null
description
string | null
sourceType
enum<integer>
Available options:
0,
1,
2,
3,
4,
5
content
string | null
blobPath
string | null
sourceUrl
string | null
indexStatus
enum<integer>
Available options:
0,
1,
2
lastIndexedUtc
string<date-time> | null
indexError
string | null
isActive
boolean
createdDateTimeUtc
string<date-time>
modifiedDateTimeUtc
string<date-time>
Last modified on June 5, 2026