Skip to main content
PUT
https://prod-api.raisedonors.com
/
api
/
Project
/
replace
Replace a Project
curl --request PUT \
  --url https://prod-api.raisedonors.com/api/Project/replace \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "currentProjectId": 123,
  "recurringGiftNewProjectId": 123,
  "legacyPageProjectId": 123,
  "defaultPageProjectId": 123,
  "pageProjectId": 123
}
'
{
  "type": "<string>",
  "title": "<string>",
  "status": 123,
  "detail": "<string>",
  "instance": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

The replace project request model.

Represents a replaceproject request.

currentProjectId
integer<int64> | null

Gets or sets the currentproject identifier.

recurringGiftNewProjectId
integer<int64> | null

Gets or sets the recurringgiftnewproject identifier.

legacyPageProjectId
integer<int64> | null

Gets or sets the legacypageproject identifier.

defaultPageProjectId
integer<int64> | null

Gets or sets the defaultpageproject identifier.

pageProjectId
integer<int64> | null

Gets or sets the pageproject identifier.

Response

OK

Last modified on June 5, 2026