Globus SDK for JavaScript
    Preparing search index...
    • Get a list of all stream access points.

      Parameters

      • Optionaloptions: {
            payload?: undefined;
            query?: {
                "filter[endpoint_admin]"?: boolean;
                "filter[fulltext]"?: string | null;
                "page[limit]"?: number;
                "page[marker]"?: string | null;
            };
        } & BaseServiceMethodOptions
      • OptionalsdkOptions: SDKOptions

      Returns Promise<
          JSONFetchResponse<
              {
                  data: {
                      attributes: {
                          advertised_owner?: string
                          | null;
                          contact_email?: string | null;
                          contact_info?: string | null;
                          department?: string | null;
                          description?: string | null;
                          display_name: string;
                          info_link?: string | null;
                          keywords?: string | null;
                          organization?: string | null;
                          tlsftp_server: string;
                      };
                      id?: string;
                      relationships: {
                          host_endpoint: {
                              data?: { id?: string | null; type: string }
                              | null;
                          };
                      };
                      type: "StreamAccessPoint";
                  }[];
                  links?: { next: string }
                  | null;
                  meta: { request_id: string };
              },
          >,
      >