Skip to main content
PUT
https://prod-api.raisedonors.com
/
api
/
Campaign
/
replace
Replace a Campaign
curl --request PUT \
  --url https://prod-api.raisedonors.com/api/Campaign/replace \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "currentCampaignId": 123,
  "newCampaignId": 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 campaign replace request.

Represents a replacecampaign request.

currentCampaignId
integer<int64> | null

Gets or sets the currentcampaign identifier.

newCampaignId
integer<int64> | null

Gets or sets the newcampaign identifier.

Response

OK

Last modified on June 5, 2026