Skip to main content
PUT
https://prod-api.raisedonors.com
/
api
/
org-knowledge
/
{id}
Update a Knowledge Source
curl --request PUT \
  --url https://prod-api.raisedonors.com/api/org-knowledge/{id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "content": "<string>",
  "blobPath": "<string>",
  "sourceUrl": "<string>"
}
'
{
  "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}"

Path Parameters

id
integer<int64>
required

Body

Request model for creating or updating a knowledge source.

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

Response

OK

Response model for a knowledge source.

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