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

      • request: NextRequest

      Returns Promise<
          | NextResponse<{ error: string }>
          | NextResponse<
              {
                  transporters: (
                      {
                          addresses: {
                              city: string
                              | null;
                              country: string | null;
                              id: string;
                              street: string | null;
                          }[];
                          company: { id: string; name: string }
                          | null;
                          contacts: {
                              email: string | null;
                              firstName: string;
                              id: string;
                              lastName: string;
                              phone: string | null;
                          }[];
                          currency: { id: string; name: string; symbol: string }
                          | null;
                          deliveryNotes: {
                              createdAt: Date;
                              id: string;
                              number: string;
                              status: string;
                          }[];
                      } & {}
                  )[];
                  total: number;
                  page: number;
                  limit: number;
                  totalPages: number;
              },
          >,
      >