/// <summary>
 /// Gets all users from an existing platform of a certain API consumer using HTTP GET.
 /// </summary>
 /// <param name="platformToken">The platform token to fetch the users from</param>
 /// <returns>An array of UserResponse object.</returns>
 /// <exception cref="ArgumentException">If the argument is null or empty.</exception>
 /// <exception cref="TikkieErrorResponseException">If the Tikkie API returns an error response.</exception>
 public async Task <UserResponse[]> GetUsersAsync(string platformToken)
 {
     return(await _userRequestsHandler.GetUsersAsync(platformToken));
 }