@akamai/openapi-ts
    Preparing search index...

    Type Alias GetAlertChannelsResponses

    type GetAlertChannelsResponses = {
        "200": {
            data: {
                alerts: { id: number; label: string; type: string; url: string }[];
                channel_type: "email";
                content: { email: { email_addresses: string[] } };
                created: string;
                created_by: string;
                id: number;
                label: string;
                type: "system" | "user";
                updated: string;
                updated_by: string;
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            alerts: { id: number; label: string; type: string; url: string }[];
            channel_type: "email";
            content: { email: { email_addresses: string[] } };
            created: string;
            created_by: string;
            id: number;
            label: string;
            type: "system" | "user";
            updated: string;
            updated_by: string;
        }[];
        page: number;
        pages: number;
        results: number;
    }

    Returns a paginated list of alerts channels.

    Type Declaration

    • data: {
          alerts: { id: number; label: string; type: string; url: string }[];
          channel_type: "email";
          content: { email: { email_addresses: string[] } };
          created: string;
          created_by: string;
          id: number;
          label: string;
          type: "system" | "user";
          updated: string;
          updated_by: string;
      }[]
    • Readonlypage: number

      Read-only The current page.

    • Readonlypages: number

      Read-only The total number of pages.

    • Readonlyresults: number

      Read-only The total number of results.