ETASCOM CRM V3 - Documentation API
    Preparing search index...
    • POST(
          request: NextRequest,
      ): Promise<
          | NextResponse<{ error: string }>
          | NextResponse<
              {
                  success: boolean;
                  data: {
                      approver: { email: string; id: string; name: string | null }
                      | null;
                      currency: { code: string; symbol: string } | null;
                      requester: { email: string; id: string; name: string | null };
                  } & {};
              },
          >,
      >

      Parameters

      • request: NextRequest

      Returns Promise<
          | NextResponse<{ error: string }>
          | NextResponse<
              {
                  success: boolean;
                  data: {
                      approver: { email: string; id: string; name: string | null }
                      | null;
                      currency: { code: string; symbol: string } | null;
                      requester: { email: string; id: string; name: string | null };
                  } & {};
              },
          >,
      >