Skip to main content
POST
https://prod-api.raisedonors.com
/
api
/
MotivationCode
/
group
cURL
curl --request POST \
  --url https://prod-api.raisedonors.com/api/MotivationCode/group \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "id": 123,
  "description": "<string>",
  "codes": [
    {
      "id": 123
    }
  ]
}
'
{
  "name": "<string>",
  "description": "<string>",
  "codes": [
    {
      "id": 123,
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

name
string
required
Required string length: 1 - 100
id
integer<int64> | null
description
string | null
Maximum string length: 1000
codes
object[] | null

Response

OK

name
string | null
description
string | null
codes
object[] | null
Last modified on June 5, 2026