Skip to main content
PUT
/
api
/
Configuration
/
date-groups
/
{id}
Update an existing Date Group.
curl --request PUT \
  --url https://api.example.com/api/Configuration/date-groups/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "dates": [
    {
      "id": 123,
      "dateGroupID": 123,
      "date": "2023-11-07T05:31:56Z",
      "description": "<string>"
    }
  ]
}
'

Path Parameters

id
integer<int32>
required

Body

application/json
name
string | null
description
string | null
dates
object[] | null

Response

200

OK