Function getSharingTaskExecutions

  • Lists executions for the specified sharing task.

    Parameters

    • taskId: string

      The sharing task identifier.

    • query: {
          limit?: number;
          next?: string;
          offset?: number;
          prev?: string;
          sort?: ("starttime" | "-starttime" | "+starttime")[];
          status?: "failed" | "successful";
      }

      an object with query parameters

      • Optionallimit?: number

        Limit the returned result set

      • Optionalnext?: string

        The cursor to the next page of data. Only one of next or previous may be specified.

      • Optionaloffset?: number

        Offset for pagination - how many elements to skip

      • Optionalprev?: string

        The cursor to the previous page of data. Only one of next or previous may be specified.

      • Optionalsort?: ("starttime" | "-starttime" | "+starttime")[]

        Sort the returned result set by the specified field

      • Optionalstatus?: "failed" | "successful"

        Specifies a filter for a particular field and value of an execution

    • Optionaloptions: ApiCallOptions

    Returns Promise<GetSharingTaskExecutionsHttpResponse>

    GetSharingTaskExecutionsHttpError