ETASCOM CRM V3 - Documentation API
    Preparing search index...
    • Parameters

      • _request: NextRequest
      • context: { params: Promise<{ id: string }> }

      Returns Promise<
          | NextResponse<{ error: string }>
          | NextResponse<
              {
                  report: {
                      attendees: ({ user: { id: ...; name: ... } | null } & {})[];
                      author: { email: string; id: string; name: string | null };
                      client: { id: string; name: string } | null;
                      lead: { id: string; name: string } | null;
                      opportunity:
                          | {
                              client: { id: string; name: string }
                              | null;
                              id: string;
                              lead: { companyName: (...) | (...); id: string; name: string } | null;
                              name: string;
                              number: string;
                          }
                          | null;
                      outcomes: ({ piloteUser: { id: ...; name: ... } | null } & {})[];
                  } & {};
              },
          >,
      >