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.
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>"
}Documentation Index
Fetch the complete documentation index at: https://docs.tensormesh.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication using an access token. Format: Bearer <access_token>
The unique ID of the user.
Token for pagination.
Was this page helpful?