chore: fix method

This commit is contained in:
Zack Fu Zi Xiang 2024-07-19 23:19:00 +08:00
parent bacb7c4ae6
commit 61be7fd46c
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ impl Client {
) -> Result<Vec<SubscriptionPlanDetail>, AppResponseError> {
let url = format!("{}/billing/api/v1/subscriptions", self.base_billing_url(),);
let resp = self
.http_client_with_auth(Method::POST, &url)
.http_client_with_auth(Method::GET, &url)
.await?
.send()
.await?;