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

    Type Alias GetManagedContactsResponses

    type GetManagedContactsResponses = {
        "200": {
            data: {
                email: string;
                group: string | null;
                id: number;
                name: string;
                phone: { primary: string | null; secondary: string | null };
                updated: string;
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            email: string;
            group: string | null;
            id: number;
            name: string;
            phone: { primary: string | null; secondary: string | null };
            updated: string;
        }[];
        page: number;
        pages: number;
        results: number;
    }

    A paginated list of ManagedContacts.

    Type Declaration

    • data: {
          email: string;
          group: string | null;
          id: number;
          name: string;
          phone: { primary: string | null; secondary: string | null };
          updated: 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.