Sign in

Create Change

documented

Create a change record.

POST /itil/changes.jsonChangeno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$domain}}.freshservice.com/itil/changes.json" \
  -X POST \
  -u "{{FRESHSERVICE_API_KEY}}:{{FRESHSERVICE_SECRET}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"itil_change": {"subject": "{{$subject}}", "email": "{{$email}}", "priority": {{$priority}}, "status": {{$status}}, "change_type": {{$change_type}}, "impact": {{$impact}}, "risk": {{$risk}}, "custom_field_attributes": {"change_range_1": "{{$change_range_1}}"}}}'