GraphResponse<T>: {
    data?: T;
    status: number;
    type?: string;
}

Response to a Graph API request made by calling executeApiRequest from a Microsoft365Connection object.

Type Parameters

  • T = unknown

    Type of the requested data (if relevant).

Type declaration

  • Optional data?: T

    Requested data returned from the Graph API (if provided).

  • status: number

    Response HTTP status code.

  • Optional type?: string

    Content type of the response data (if provided).

Generated using TypeDoc