Get organization credit balance
curl --request GET \
--url https://api.runflow.io/v1/billing/balance \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"balance": "<string>",
"low_balance_threshold": "<string>",
"low_balance_notified_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}Account
Get organization credit balance
Retrieve the credit balance for the current organization.
GET
/
v1
/
billing
/
balance
Get organization credit balance
curl --request GET \
--url https://api.runflow.io/v1/billing/balance \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"balance": "<string>",
"low_balance_threshold": "<string>",
"low_balance_notified_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Response
The organization credit balance.
Response shape.
Pattern:
^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$Pattern:
^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$⌘I