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

    Type Alias PutManagedContactData

    type PutManagedContactData = {
        body: {
            email?: string;
            group?: string | null;
            id?: number;
            name?: string;
            phone?: { primary?: string | null; secondary?: string | null };
            updated?: string;
        };
        path: { contactId: number };
        query?: never;
        url: "managed/contacts/{contactId}";
    }
    Index

    Properties

    Properties

    body: {
        email?: string;
        group?: string | null;
        id?: number;
        name?: string;
        phone?: { primary?: string | null; secondary?: string | null };
        updated?: string;
    }

    Information about someone Linode's special forces may contact in case an issue is detected with a manager service.

    Type Declaration

    • Optionalemail?: string

      The address to email this Contact to alert them of issues.

    • Optionalgroup?: string | null

      Filterable A grouping for this Contact. This is for display purposes only.

    • Optional Readonlyid?: number

      Read-only This Contact's unique ID.

    • Optionalname?: string

      The name of this Contact.

    • Optionalphone?: { primary?: string | null; secondary?: string | null }

      Information about how to reach this Contact by phone.

      • Optionalprimary?: string | null

        This Contact's primary phone number.

      • Optionalsecondary?: string | null

        This Contact's secondary phone number.

    • Optional Readonlyupdated?: string

      Read-only When this Contact was last updated.

    path: { contactId: number }

    Type Declaration

    • contactId: number

      The ID of the contact to access.

    query?: never
    url: "managed/contacts/{contactId}"