client.taskRecurrenceOccurrencesOperation methods
Parameter declarations below are taken from the pinned TypeScript source. Request fields and responses are summarized from the matching OpenAPI operation; follow the API link for every field, constraint, example, and error description.
/task-recurrences/{id}/occurrencestaskRecurrenceOccurrences.list
Use this operation to list task recurrence occurrences. It returns only resources visible to the credential and applies the documented filters before producing a bounded, stable page. Required scopes, product permissions, sharing rules, workspace locks, and regional cell ownership are enforced for every request.
client.taskRecurrenceOccurrences.list(seriesId: string, options: ListOptions = {})- Return form
Promise- Operation ID
listTaskRecurrenceOccurrences- Required scopes
task-recurrences:readtasks:read- SDK parameters
seriesId: stringoptions: ListOptions- Path request fields
id: string- Query request fields
cursor?: stringlimit?: integer- Success
200 Array<TaskRecurrenceOccurrence> envelope
/task-recurrences/{id}/occurrences/{occurrenceKey}taskRecurrenceOccurrences.get
Use this operation to get a task recurrence occurrence. It returns the resource only when it belongs to the authenticated workspace and is visible to the credential. Required scopes, product permissions, sharing rules, workspace locks, and regional cell ownership are enforced for every request.
client.taskRecurrenceOccurrences.get(seriesId: string, occurrenceKey: string, options: RequestOptions = {})- Return form
Promise- Operation ID
getTaskRecurrenceOccurrence- Required scopes
task-recurrences:readtasks:read- SDK parameters
seriesId: stringoccurrenceKey: stringoptions: RequestOptions- Path request fields
id: stringoccurrenceKey: string- Success
200 TaskRecurrenceOccurrence envelope
/task-recurrences/{id}/occurrences/{occurrenceKey}/overridetaskRecurrenceOccurrences.override
Use this operation to override a task recurrence occurrence. Only documented mutable fields are accepted; omitted fields retain their current values unless the request schema states replacement semantics. Required scopes, product permissions, sharing rules, workspace locks, and regional cell ownership are enforced for every request. Send the latest strong ETag in If-Match; stale revisions fail without overwriting a concurrent change.
client.taskRecurrenceOccurrences.override(seriesId: string, occurrenceKey: string, data: TaskRecurrenceOccurrenceOverride, options: TaskRecurrenceOccurrenceOverrideOptions)- Return form
Promise- Operation ID
overrideTaskRecurrenceOccurrence- Required scopes
task-recurrences:writetasks:readtasks:write- SDK parameters
seriesId: stringoccurrenceKey: stringdata: TaskRecurrenceOccurrenceOverrideoptions: TaskRecurrenceOccurrenceOverrideOptions- Path request fields
id: stringoccurrenceKey: string- Header request fields
If-Match?: stringIf-None-Match?: string- Request body
TaskRecurrenceOccurrenceOverrideapplication/json- Success
200 TaskRecurrenceOccurrence envelope
/task-recurrences/{id}/occurrences/{occurrenceKey}/overridetaskRecurrenceOccurrences.clearOverride
Use this operation to clear a task recurrence occurrence override. The operation preserves TeamGrid lifecycle and permission rules instead of bypassing them with a direct data deletion. Required scopes, product permissions, sharing rules, workspace locks, and regional cell ownership are enforced for every request. Send the latest strong ETag in If-Match; stale revisions fail without overwriting a concurrent change.
client.taskRecurrenceOccurrences.clearOverride(seriesId: string, occurrenceKey: string, options: TaskRecurrenceOccurrenceMutationOptions)- Return form
Promise- Operation ID
clearTaskRecurrenceOccurrenceOverride- Required scopes
task-recurrences:writetasks:readtasks:write- SDK parameters
seriesId: stringoccurrenceKey: stringoptions: TaskRecurrenceOccurrenceMutationOptions- Path request fields
id: stringoccurrenceKey: string- Header request fields
If-Match: string- Success
200 TaskRecurrenceOccurrence envelope
/task-recurrences/{id}/occurrences/{occurrenceKey}/retrytaskRecurrenceOccurrences.retry
Use this operation to retry a failed task recurrence occurrence. The server validates the complete payload and derives workspace ownership from the authenticated credential. Required scopes, product permissions, sharing rules, workspace locks, and regional cell ownership are enforced for every request. Send the latest strong ETag in If-Match; stale revisions fail without overwriting a concurrent change.
client.taskRecurrenceOccurrences.retry(seriesId: string, occurrenceKey: string, options: TaskRecurrenceOccurrenceMutationOptions)- Return form
Promise- Operation ID
retryTaskRecurrenceOccurrence- Required scopes
task-recurrences:writetasks:readtasks:write- SDK parameters
seriesId: stringoccurrenceKey: stringoptions: TaskRecurrenceOccurrenceMutationOptions- Path request fields
id: stringoccurrenceKey: string- Header request fields
If-Match: string- Success
200 TaskRecurrenceOccurrence envelope
Convenience helpers
These typed helpers compose mapped operations. They do not grant scopes or bypass API limits.
taskRecurrenceOccurrences.pages
Iterate cursor pages with a bounded PaginationOptions policy.
client.taskRecurrenceOccurrences.pages(seriesId: string, options: ListOptions = {}, pagination?: PaginationOptions)Returns AsyncGeneratorErrors and transport metadata
HTTP failures reject with TeamGridApiError, including the status, stable error documents, request ID, optional retry delay, and transport metadata. Local validation, routing, timeout, response-size, and pagination failures reject withTeamGridClientError and a stable client error code. Successful envelopes expose non-enumerable transport metadata.
See pagination and errors andclient configuration for handling guidance.