Index: petify-frontend/src/api/reviews.ts
===================================================================
--- petify-frontend/src/api/reviews.ts	(revision 92e7c7aeb21d4b882e2f8107b1676468ceb14aa7)
+++ petify-frontend/src/api/reviews.ts	(revision f6ed6e478015d417b9610fe651dfccdc3e22dc89)
@@ -20,9 +20,17 @@
 }
 
+export type UserReviewInteractionType =
+  | 'EVENT'
+  | 'PERSONAL_INTERACTION'
+  | 'ONLINE'
+  | 'PHONE_CALL'
+  | 'OTHER'
+
 export async function createReview(
   targetUserId: number,
   userId: number,
   rating: number,
-  comment: string
+  comment: string,
+  interactionType: UserReviewInteractionType
 ): Promise<Review> {
   const url = joinUrl(getBaseUrl(), `/api/reviews/${targetUserId}`)
@@ -36,4 +44,5 @@
       rating,
       comment,
+      interactionType,
     }),
   })
