cURL
curl --request GET \ --url https://api.tensormesh.ai/v1/billing/transactions \ --header 'Authorization: Bearer <token>'
{ "transactions": [ { "transactionId": "<string>", "stripePaymentIntentId": "<string>", "paymentMethodId": "<string>", "createdAt": "2023-11-07T05:31:56Z", "amount": { "currencyCode": "<string>", "units": "<string>", "nanos": 123 }, "description": "<string>", "status": "TRANSACTION_STATUS_UNSPECIFIED", "type": "TRANSACTION_TYPE_UNSPECIFIED" } ], "nextPageToken": "<string>" }
Lists a user’s billing transactions.
Bearer authentication using an access token. Format: Bearer <access_token>
The unique ID of the user.
Token for pagination.
A successful response.
ListBillingTransactionsResponse is the response listing billing transactions.
The transactions.
Show child attributes