getUserBillingSubscriptionWithHttpInfo method

Future<Response> getUserBillingSubscriptionWithHttpInfo(
  1. String userId
)

Retrieve a user's billing subscription

Retrieves the billing subscription for the specified user. This includes subscription details, active plans, billing information, and payment status. The subscription contains subscription items which represent the individual plans the user is subscribed to.

Note: This method returns the HTTP Response.

Parameters:

  • String userId (required): The ID of the user whose subscription to retrieve

Implementation

Future<http.Response> getUserBillingSubscriptionWithHttpInfo(
  String userId,
) async {
  // ignore: prefer_const_declarations
  final path = r'/users/{user_id}/billing/subscription'
      .replaceAll('{user_id}', userId);

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>[];

  return apiClient.invokeAPI(
    path,
    'GET',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}