Removed
Schedules Listing and Details
about 4 hours ago
Schedules Breaking Changes
Breaking changes
-
/schedules/v1List schedules- The schedule classification field in the list response has been renamed. Each schedule object in the
content[]array now returnstypeand no longer returnskind. - What you must change: update your response parsing and any business logic that read
content[].kindto readcontent[].typeinstead.
- The schedule classification field in the list response has been renamed. Each schedule object in the
-
/schedules/v1/{schedule_id}Get schedule details- The schedule classification field in the details response has been renamed. The response now returns
typeand no longer returnskind. - What you must change: update your response parsing and any business logic that read
kindon the schedule resource to readtypeinstead.
- The schedule classification field in the details response has been renamed. The response now returns
These endpoints let you list existing schedules and fetch a single schedule’s details so you can understand what is set to execute against a user’s consent. If you rely on the schedule classification to route or display schedules, using kind will now fail or return undefined. Switch to type everywhere you consume these responses.
Model updates
- The enum that defines the schedule classification has been renamed from
ScheduleKindtoScheduleType.- What you must change: if you reference this schema in typed clients, validations, or database mappings, replace
ScheduleKindwithScheduleType. This includes any switch statements or serializers that depended on the old model name.
- What you must change: if you reference this schema in typed clients, validations, or database mappings, replace
