Customer API Reference
This API reference has been automatically generated from the Customer GraphQL schema.
Queries
creditFacility
Fetches a specific credit facility by its unique identifier for the authenticated customer
creditFacility(
id: UUID!
): CreditFacility
Arguments
creditFacility.id ● UUID! non-null scalar
Type
CreditFacility object
me
Returns the current authenticated customer's information including deposit account and credit facilities
me: Me!
Type
Me object
realtimePrice
Returns the current BTC/USD exchange rate
realtimePrice: RealtimePrice!
Type
RealtimePrice object
Directives (Operations)
include
Directs the executor to include this field or fragment only when the if argument is true.
directive @include(
if: Boolean!
) on
| FIELD
| FRAGMENT_SPREAD
| INLINE_FRAGMENT
Arguments
include.if ● Boolean! non-null scalar
skip
Directs the executor to skip this field or fragment when the if argument is true.
directive @skip(
if: Boolean!
) on
| FIELD
| FRAGMENT_SPREAD
| INLINE_FRAGMENT
Arguments
skip.if ● Boolean! non-null scalar
Objects
CancelledWithdrawalEntry
No description
type CancelledWithdrawalEntry {
recordedAt: Timestamp!
withdrawal: Withdrawal!
}
Fields
CancelledWithdrawalEntry.recordedAt ● Timestamp! non-null scalar
CancelledWithdrawalEntry.withdrawal ● Withdrawal! non-null object
Implemented By
DepositAccountHistoryEntry union
Collateral
No description
type Collateral {
btcBalance: Satoshis!
}