diff --git a/packages/backend/src/api/endpoints/SessionApi.ts b/packages/backend/src/api/endpoints/SessionApi.ts index cc46fcef3b1..0a6ae7dfc8d 100644 --- a/packages/backend/src/api/endpoints/SessionApi.ts +++ b/packages/backend/src/api/endpoints/SessionApi.ts @@ -12,9 +12,9 @@ const basePath = '/sessions'; /** @generateWithEmptyComment */ export type SessionListParams = ClerkPaginationRequest<{ /** The ID of the client to get sessions for. */ - clientId?: string; + client_id?: string; /** The ID of the user to get sessions for. */ - userId?: string; + user_id?: string; /** The status of the sessions to get. */ status?: SessionStatus; }>;