diff --git a/packages/documentation/src/schema-dumps/auth_raw_schema.md b/packages/documentation/src/schema-dumps/auth_raw_schema.md deleted file mode 100644 index 340697ba50..0000000000 --- a/packages/documentation/src/schema-dumps/auth_raw_schema.md +++ /dev/null @@ -1,755 +0,0 @@ -# Schema Types - -
- Table of Contents - -- [Query](#query) -- [Mutation](#mutation) -- [Objects](#objects) - - [Access](#access) - - [Grant](#grant) - - [GrantEdge](#grantedge) - - [GrantsConnection](#grantsconnection) - - [LimitData](#limitdata) - - [PageInfo](#pageinfo) - - [PaymentAmount](#paymentamount) - - [RevokeGrantMutationResponse](#revokegrantmutationresponse) -- [Inputs](#inputs) - - [FilterGrantState](#filtergrantstate) - - [FilterString](#filterstring) - - [GrantFilter](#grantfilter) - - [RevokeGrantInput](#revokegrantinput) -- [Enums](#enums) - - [GrantFinalization](#grantfinalization) - - [GrantState](#grantstate) -- [Scalars](#scalars) - - [Boolean](#boolean) - - [ID](#id) - - [Int](#int) - - [String](#string) - - [UInt64](#uint64) - - [UInt8](#uint8) -- [Interfaces](#interfaces) - - [Model](#model) - - [MutationResponse](#mutationresponse) - -
- -## Query - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
grantsGrantsConnection! - -Fetch a page of grants. - -
afterString - -Paginating forwards: the cursor before the the requested page. - -
beforeString - -Paginating backwards: the cursor after the the requested page. - -
firstInt - -Paginating forwards: The first **n** elements from the page. - -
lastInt - -Paginating backwards: The last **n** elements from the page. - -
filterGrantFilter - -Filter grants based on specific criteria. - -
grantGrant! - -Fetch a grant - -
idID!
- -## Mutation - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
revokeGrantRevokeGrantMutationResponse! - -Revoke Grant - -
inputRevokeGrantInput!
- -## Objects - -### Access - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Access id - -
identifierString - -Payment pointer of a sub-resource (incoming payment, outgoing payment, or quote) - -
typeString! - -Access type (incoming payment, outgoing payment, or quote) - -
actions[String]! - -Access action (create, read, list or complete) - -
limitsLimitData - -Payment limits - -
createdAtString! - -Date-time of creation - -
- -### Grant - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Grant id - -
clientString! - -Payment pointer of the grantee's account - -
access[Access!]! - -Access details - -
stateGrantState! - -State of the grant - -
finalizationReasonGrantFinalization - -Reason a grant was finalized - -
createdAtString! - -Date-time of creation - -
- -### GrantEdge - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
nodeGrant!
cursorString!
- -### GrantsConnection - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
pageInfoPageInfo!
edges[GrantEdge!]!
- -### LimitData - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
receiverString - -Payment pointer URL of the receiver - -
debitAmountPaymentAmount - -Amount to debit - -
receiveAmountPaymentAmount - -Amount to receive - -
intervalString - -Interval between payments - -
- -### PageInfo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
endCursorString - -Paginating forwards: the cursor to continue. - -
hasNextPageBoolean! - -Paginating forwards: Are there more pages? - -
hasPreviousPageBoolean! - -Paginating backwards: Are there more pages? - -
startCursorString - -Paginating backwards: the cursor to continue. - -
- -### PaymentAmount - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
valueUInt64!
assetCodeString! - -[ISO 4217 currency code](https://en.wikipedia.org/wiki/ISO_4217), e.g. `USD` - -
assetScaleUInt8! - -Difference in orders of magnitude between the standard unit of an asset and a corresponding fractional unit - -
- -### RevokeGrantMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
- -## Inputs - -### FilterGrantState - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
in[GrantState!]
notIn[GrantState!]
- -### FilterString - - - - - - - - - - - - - - - - -
FieldTypeDescription
in[String!]
- -### GrantFilter - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
identifierFilterString
stateFilterGrantState
- -### RevokeGrantInput - - - - - - - - - - - - - - - - -
FieldTypeDescription
grantIdString!
- -## Enums - -### GrantFinalization - - - - - - - - - - - - - - - - - - - - -
ValueDescription
ISSUED - -grant was issued - -
REVOKED - -grant was revoked - -
REJECTED - -grant was rejected - -
- -### GrantState - - - - - - - - - - - - - - - - - - - - - - - - -
ValueDescription
PROCESSING - -grant request is determining what state to enter next - -
PENDING - -grant request is awaiting interaction - -
APPROVED - -grant was approved - -
FINALIZED - -grant was finalized and no more access tokens or interactions can be made on it - -
- -## Scalars - -### Boolean - -The `Boolean` scalar type represents `true` or `false`. - -### ID - -The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID. - -### Int - -The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. - -### String - -The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. - -### UInt64 - -### UInt8 - -## Interfaces - -### Model - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID!
createdAtString!
- -### MutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
diff --git a/packages/documentation/src/schema-dumps/backend_raw_schema.md b/packages/documentation/src/schema-dumps/backend_raw_schema.md deleted file mode 100644 index a6177ce834..0000000000 --- a/packages/documentation/src/schema-dumps/backend_raw_schema.md +++ /dev/null @@ -1,4913 +0,0 @@ -# Schema Types - -
- Table of Contents - -- [Query](#query) -- [Mutation](#mutation) -- [Objects](#objects) - - [Amount](#amount) - - [Asset](#asset) - - [AssetEdge](#assetedge) - - [AssetMutationResponse](#assetmutationresponse) - - [AssetsConnection](#assetsconnection) - - [CreatePaymentPointerKeyMutationResponse](#createpaymentpointerkeymutationresponse) - - [CreatePaymentPointerMutationResponse](#createpaymentpointermutationresponse) - - [CreatePeerMutationResponse](#createpeermutationresponse) - - [CreateReceiverResponse](#createreceiverresponse) - - [DeletePeerMutationResponse](#deletepeermutationresponse) - - [Fee](#fee) - - [Http](#http) - - [HttpOutgoing](#httpoutgoing) - - [IncomingPayment](#incomingpayment) - - [IncomingPaymentConnection](#incomingpaymentconnection) - - [IncomingPaymentEdge](#incomingpaymentedge) - - [IncomingPaymentResponse](#incomingpaymentresponse) - - [Jwk](#jwk) - - [LiquidityMutationResponse](#liquiditymutationresponse) - - [OutgoingPayment](#outgoingpayment) - - [OutgoingPaymentConnection](#outgoingpaymentconnection) - - [OutgoingPaymentEdge](#outgoingpaymentedge) - - [OutgoingPaymentResponse](#outgoingpaymentresponse) - - [PageInfo](#pageinfo) - - [Payment](#payment) - - [PaymentConnection](#paymentconnection) - - [PaymentEdge](#paymentedge) - - [PaymentPointer](#paymentpointer) - - [PaymentPointerEdge](#paymentpointeredge) - - [PaymentPointerKey](#paymentpointerkey) - - [PaymentPointerWithdrawal](#paymentpointerwithdrawal) - - [PaymentPointerWithdrawalMutationResponse](#paymentpointerwithdrawalmutationresponse) - - [PaymentPointersConnection](#paymentpointersconnection) - - [Peer](#peer) - - [PeerEdge](#peeredge) - - [PeersConnection](#peersconnection) - - [Quote](#quote) - - [QuoteConnection](#quoteconnection) - - [QuoteEdge](#quoteedge) - - [QuoteResponse](#quoteresponse) - - [Receiver](#receiver) - - [RevokePaymentPointerKeyMutationResponse](#revokepaymentpointerkeymutationresponse) - - [SetFeeResponse](#setfeeresponse) - - [TransferMutationResponse](#transfermutationresponse) - - [TriggerPaymentPointerEventsMutationResponse](#triggerpaymentpointereventsmutationresponse) - - [UpdatePaymentPointerMutationResponse](#updatepaymentpointermutationresponse) - - [UpdatePeerMutationResponse](#updatepeermutationresponse) - - [WebhookEvent](#webhookevent) - - [WebhookEventsConnection](#webhookeventsconnection) - - [WebhookEventsEdge](#webhookeventsedge) -- [Inputs](#inputs) - - [AddAssetLiquidityInput](#addassetliquidityinput) - - [AddPeerLiquidityInput](#addpeerliquidityinput) - - [AmountInput](#amountinput) - - [CreateAssetInput](#createassetinput) - - [CreateAssetLiquidityWithdrawalInput](#createassetliquiditywithdrawalinput) - - [CreateIncomingPaymentInput](#createincomingpaymentinput) - - [CreateOutgoingPaymentInput](#createoutgoingpaymentinput) - - [CreatePaymentPointerInput](#createpaymentpointerinput) - - [CreatePaymentPointerKeyInput](#createpaymentpointerkeyinput) - - [CreatePaymentPointerWithdrawalInput](#createpaymentpointerwithdrawalinput) - - [CreatePeerInput](#createpeerinput) - - [CreatePeerLiquidityWithdrawalInput](#createpeerliquiditywithdrawalinput) - - [CreateQuoteInput](#createquoteinput) - - [CreateReceiverInput](#createreceiverinput) - - [DeletePeerInput](#deletepeerinput) - - [DepositEventLiquidityInput](#depositeventliquidityinput) - - [FeeDetails](#feedetails) - - [FilterString](#filterstring) - - [HttpIncomingInput](#httpincominginput) - - [HttpInput](#httpinput) - - [HttpOutgoingInput](#httpoutgoinginput) - - [JwkInput](#jwkinput) - - [PaymentFilter](#paymentfilter) - - [PostLiquidityWithdrawalInput](#postliquiditywithdrawalinput) - - [RevokePaymentPointerKeyInput](#revokepaymentpointerkeyinput) - - [SetFeeInput](#setfeeinput) - - [TriggerPaymentPointerEventsInput](#triggerpaymentpointereventsinput) - - [UpdateAssetInput](#updateassetinput) - - [UpdatePaymentPointerInput](#updatepaymentpointerinput) - - [UpdatePeerInput](#updatepeerinput) - - [VoidLiquidityWithdrawalInput](#voidliquiditywithdrawalinput) - - [WebhookEventFilter](#webhookeventfilter) - - [WithdrawEventLiquidityInput](#withdraweventliquidityinput) -- [Enums](#enums) - - [Alg](#alg) - - [Crv](#crv) - - [FeeType](#feetype) - - [IncomingPaymentState](#incomingpaymentstate) - - [Kty](#kty) - - [LiquidityError](#liquidityerror) - - [OutgoingPaymentState](#outgoingpaymentstate) - - [PaymentPointerStatus](#paymentpointerstatus) - - [PaymentType](#paymenttype) -- [Scalars](#scalars) - - [Boolean](#boolean) - - [Float](#float) - - [ID](#id) - - [Int](#int) - - [JSONObject](#jsonobject) - - [String](#string) - - [UInt64](#uint64) - - [UInt8](#uint8) -- [Interfaces](#interfaces) - - [BasePayment](#basepayment) - - [Model](#model) - - [MutationResponse](#mutationresponse) - -
- -## Query - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
assetAsset - -Fetch an asset - -
idString!
assetsAssetsConnection! - -Fetch a page of assets. - -
afterString - -Paginating forwards: the cursor before the the requested page. - -
beforeString - -Paginating backwards: the cursor after the the requested page. - -
firstInt - -Paginating forwards: The first **n** elements from the page. - -
lastInt - -Paginating backwards: The last **n** elements from the page. - -
peerPeer - -Fetch a peer - -
idString!
peersPeersConnection! - -Fetch a page of peers. - -
afterString - -Paginating forwards: the cursor before the the requested page. - -
beforeString - -Paginating backwards: the cursor after the the requested page. - -
firstInt - -Paginating forwards: The first **n** elements from the page. - -
lastInt - -Paginating backwards: The last **n** elements from the page. - -
paymentPointerPaymentPointer - -Fetch a payment pointer - -
idString!
paymentPointersPaymentPointersConnection! - -Fetch a page of payment pointers. - -
afterString - -Paginating forwards: the cursor before the the requested page. - -
beforeString - -Paginating backwards: the cursor after the the requested page. - -
firstInt - -Paginating forwards: The first **n** elements from the page. - -
lastInt - -Paginating backwards: The last **n** elements from the page. - -
quoteQuote - -Fetch an Open Payments quote - -
idString!
outgoingPaymentOutgoingPayment - -Fetch an Open Payments outgoing payment - -
idString!
incomingPaymentIncomingPayment - -Fetch an Open Payments incoming payment - -
idString!
webhookEventsWebhookEventsConnection! - -Fetch a page of webhook events - -
afterString - -Paginating forwards: the cursor before the the requested page. - -
beforeString - -Paginating backwards: the cursor after the the requested page. - -
firstInt - -Paginating forwards: The first **n** elements from the page. - -
lastInt - -Paginating backwards: The last **n** elements from the page. - -
filterWebhookEventFilter - -Filter webhook events based on specific criteria. - -
paymentsPaymentConnection! - -Fetch a page of combined payments - -
afterString - -Paginating forwards: the cursor before the the requested page. - -
beforeString - -Paginating backwards: the cursor after the the requested page. - -
firstInt - -Paginating forwards: The first **n** elements from the page. - -
lastInt - -Paginating backwards: The last **n** elements from the page. - -
filterPaymentFilter - -Filter payment events based on specific criteria. - -
- -## Mutation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
createAssetAssetMutationResponse! - -Create an asset - -
inputCreateAssetInput!
updateAssetAssetMutationResponse! - -Update an asset - -
inputUpdateAssetInput!
addAssetLiquidityLiquidityMutationResponse - -Add asset liquidity - -
inputAddAssetLiquidityInput!
createAssetLiquidityWithdrawalLiquidityMutationResponse - -Withdraw asset liquidity - -
inputCreateAssetLiquidityWithdrawalInput!
createPeerCreatePeerMutationResponse! - -Create a peer - -
inputCreatePeerInput!
updatePeerUpdatePeerMutationResponse! - -Update a peer - -
inputUpdatePeerInput!
deletePeerDeletePeerMutationResponse! - -Delete a peer - -
inputDeletePeerInput!
addPeerLiquidityLiquidityMutationResponse - -Add peer liquidity - -
inputAddPeerLiquidityInput!
createPeerLiquidityWithdrawalLiquidityMutationResponse - -Withdraw peer liquidity - -
inputCreatePeerLiquidityWithdrawalInput!
postLiquidityWithdrawalLiquidityMutationResponse - -Post liquidity withdrawal. Withdrawals are two-phase commits and are committed via this mutation. - -
inputPostLiquidityWithdrawalInput!
voidLiquidityWithdrawalLiquidityMutationResponse - -Void liquidity withdrawal. Withdrawals are two-phase commits and are rolled back via this mutation. - -
inputVoidLiquidityWithdrawalInput!
createPaymentPointerCreatePaymentPointerMutationResponse! - -Create a payment pointer - -
inputCreatePaymentPointerInput!
updatePaymentPointerUpdatePaymentPointerMutationResponse! - -Update a payment pointer - -
inputUpdatePaymentPointerInput!
createPaymentPointerKeyCreatePaymentPointerKeyMutationResponse - -Add a public key to a payment pointer that is used to verify Open Payments requests. - -
inputCreatePaymentPointerKeyInput!
revokePaymentPointerKeyRevokePaymentPointerKeyMutationResponse - -Revoke a public key associated with a payment pointer. Open Payment requests using this key for request signatures will be denied going forward. - -
inputRevokePaymentPointerKeyInput!
createIncomingPaymentIncomingPaymentResponse! - -Create an internal Open Payments Incoming Payment. The receiver has a payment pointer on this Rafiki instance. - -
inputCreateIncomingPaymentInput!
createReceiverCreateReceiverResponse! - -Create an internal or external Open Payments Incoming Payment. The receiver has a payment pointer on either this or another Open Payments resource server. - -
inputCreateReceiverInput!
createQuoteQuoteResponse! - -Create an Open Payments Quote - -
inputCreateQuoteInput!
createOutgoingPaymentOutgoingPaymentResponse! - -Create an Open Payments Outgoing Payment - -
inputCreateOutgoingPaymentInput!
depositEventLiquidityLiquidityMutationResponse - -Deposit webhook event liquidity - -
inputDepositEventLiquidityInput!
withdrawEventLiquidityLiquidityMutationResponse - -Withdraw webhook event liquidity - -
inputWithdrawEventLiquidityInput!
createPaymentPointerWithdrawalPaymentPointerWithdrawalMutationResponse - -Withdraw liquidity from a payment pointer received via Web Monetization. - -
inputCreatePaymentPointerWithdrawalInput!
triggerPaymentPointerEventsTriggerPaymentPointerEventsMutationResponse! - -If automatic withdrawal of funds received via Web Monetization by the payment pointer are disabled, this mutation can be used to trigger up to n withdrawal events. - -
inputTriggerPaymentPointerEventsInput!
setFeeSetFeeResponse! - -Set the fee on an asset - -
inputSetFeeInput!
- -## Objects - -### Amount - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
valueUInt64!
assetCodeString! - -[ISO 4217 currency code](https://en.wikipedia.org/wiki/ISO_4217), e.g. `USD` - -
assetScaleUInt8! - -Difference in orders of magnitude between the standard unit of an asset and a corresponding fractional unit - -
- -### Asset - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Asset id - -
codeString! - -[ISO 4217 currency code](https://en.wikipedia.org/wiki/ISO_4217), e.g. `USD` - -
scaleUInt8! - -Difference in orders of magnitude between the standard unit of an asset and a corresponding fractional unit - -
liquidityUInt64 - -Available liquidity - -
withdrawalThresholdUInt64 - -Minimum amount of liquidity that can be withdrawn from the asset - -
liquidityThresholdUInt64 - -Account Servicing Entity will be notified via a webhook event if liquidity falls below this value - -
receivingFeeFee - -The receiving fee structure for the asset - -
sendingFeeFee - -The sending fee structure for the asset - -
createdAtString! - -Date-time of creation - -
- -### AssetEdge - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
nodeAsset!
cursorString!
- -### AssetMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
assetAsset
- -### AssetsConnection - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
pageInfoPageInfo!
edges[AssetEdge!]!
- -### CreatePaymentPointerKeyMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
paymentPointerKeyPaymentPointerKey
- -### CreatePaymentPointerMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
paymentPointerPaymentPointer
- -### CreatePeerMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
peerPeer
- -### CreateReceiverResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString
receiverReceiver
- -### DeletePeerMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
- -### Fee - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Fee id - -
assetIdID! - -Asset id associated with the fee - -
typeFeeType! - -Type of fee (sending or receiving) - -
fixedUInt64! - -Fixed fee - -
basisPointsInt! - -Basis points fee. 1 basis point = 0.01%, 100 basis points = 1%, 10000 basis points = 100% - -
createdAtString! - -Date-time of creation - -
- -### Http - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
outgoingHttpOutgoing! - -Outgoing connection details - -
- -### HttpOutgoing - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
authTokenString! - -Auth token to present at the peering Rafiki instance - -
endpointString! - -Peer's connection endpoint - -
- -### IncomingPayment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Incoming Payment id - -
paymentPointerIdID! - -Id of the payment pointer under which this incoming payment was created - -
stateIncomingPaymentState! - -Incoming payment state - -
expiresAtString! - -Date-time of expiry. After this time, the incoming payment will not accept further payments made to it. - -
incomingAmountAmount - -The maximum amount that should be paid into the payment pointer under this incoming payment. - -
receivedAmountAmount! - -The total amount that has been paid into the payment pointer under this incoming payment. - -
metadataJSONObject - -Additional metadata associated with the incoming payment. - -
createdAtString! - -Date-time of creation - -
- -### IncomingPaymentConnection - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
pageInfoPageInfo!
edges[IncomingPaymentEdge!]!
- -### IncomingPaymentEdge - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
nodeIncomingPayment!
cursorString!
- -### IncomingPaymentResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString
paymentIncomingPayment
- -### Jwk - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
kidString! - -Key id - -
xString! - -Base64 url-encoded public key. - -
algAlg! - -Cryptographic algorithm family used with the key. The only allowed value is `EdDSA`. - -
ktyKty! - -Key type. The only allowed value is `OKP`. - -
crvCrv! - -Curve that the key pair is derived from. The only allowed value is `Ed25519`. - -
- -### LiquidityMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
errorLiquidityError
- -### OutgoingPayment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Outgoing payment id - -
paymentPointerIdID! - -Id of the payment pointer under which this outgoing payment was created - -
stateOutgoingPaymentState! - -Outgoing payment state - -
errorString
stateAttemptsInt!
debitAmountAmount! - -Amount to send (fixed send) - -
receiveAmountAmount! - -Amount to receive (fixed receive) - -
receiverString! - -Payment pointer URL of the receiver - -
metadataJSONObject - -Additional metadata associated with the outgoing payment. - -
quoteQuote - -Quote for this outgoing payment - -
sentAmountAmount! - -Amount already sent - -
createdAtString! - -Date-time of creation - -
- -### OutgoingPaymentConnection - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
pageInfoPageInfo!
edges[OutgoingPaymentEdge!]!
- -### OutgoingPaymentEdge - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
nodeOutgoingPayment!
cursorString!
- -### OutgoingPaymentResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString
paymentOutgoingPayment
- -### PageInfo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
endCursorString - -Paginating forwards: the cursor to continue. - -
hasNextPageBoolean! - -Paginating forwards: Are there more pages? - -
hasPreviousPageBoolean! - -Paginating backwards: Are there more pages? - -
startCursorString - -Paginating backwards: the cursor to continue. - -
- -### Payment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Payment id - -
typePaymentType! - -Type of payment - -
paymentPointerIdID! - -Id of the payment pointer under which this payment was created - -
stateString! - -Either the IncomingPaymentState or OutgoingPaymentState according to type - -
metadataJSONObject - -Additional metadata associated with the payment. - -
createdAtString! - -Date-time of creation - -
- -### PaymentConnection - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
pageInfoPageInfo!
edges[PaymentEdge!]!
- -### PaymentEdge - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
nodePayment!
cursorString!
- -### PaymentPointer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Payment pointer id - -
assetAsset! - -Asset of the payment pointer - -
urlString! - -Payment Pointer URL - -
publicNameString - -Public name associated with the payment pointer - -
incomingPaymentsIncomingPaymentConnection - -List of incoming payments received by this payment pointer - -
afterString - -Paginating forwards: the cursor before the the requested page. - -
beforeString - -Paginating backwards: the cursor after the the requested page. - -
firstInt - -Paginating forwards: The first **n** elements from the page. - -
lastInt - -Paginating backwards: The last **n** elements from the page. - -
quotesQuoteConnection - -List of quotes created at this payment pointer - -
afterString - -Paginating forwards: the cursor before the the requested page. - -
beforeString - -Paginating backwards: the cursor after the the requested page. - -
firstInt - -Paginating forwards: The first **n** elements from the page. - -
lastInt - -Paginating backwards: The last **n** elements from the page. - -
outgoingPaymentsOutgoingPaymentConnection - -List of outgoing payments sent from this payment pointer - -
afterString - -Paginating forwards: the cursor before the the requested page. - -
beforeString - -Paginating backwards: the cursor after the the requested page. - -
firstInt - -Paginating forwards: The first **n** elements from the page. - -
lastInt - -Paginating backwards: The last **n** elements from the page. - -
createdAtString! - -Date-time of creation - -
statusPaymentPointerStatus! - -Status of the payment pointer - -
- -### PaymentPointerEdge - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
nodePaymentPointer!
cursorString!
- -### PaymentPointerKey - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Internal id of key - -
paymentPointerIdID! - -Id of the payment pointer to which this key belongs to - -
jwkJwk! - -Public key - -
revokedBoolean! - -Indicator whether the key has been revoked - -
createdAtString! - -Date-time of creation - -
- -### PaymentPointerWithdrawal - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Withdrawal Id - -
amountUInt64! - -Amount to withdraw - -
paymentPointerPaymentPointer! - -Payment pointer details - -
- -### PaymentPointerWithdrawalMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
errorLiquidityError
withdrawalPaymentPointerWithdrawal
- -### PaymentPointersConnection - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
pageInfoPageInfo!
edges[PaymentPointerEdge!]!
- -### Peer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Peer id - -
maxPacketAmountUInt64 - -Maximum packet amount that the peer accepts - -
httpHttp! - -Peering connection details - -
assetAsset! - -Asset of peering relationship - -
staticIlpAddressString! - -Peer's ILP address - -
nameString - -Peer's public name - -
liquidityThresholdUInt64 - -Account Servicing Entity will be notified via a webhook event if peer liquidity falls below this value - -
liquidityUInt64 - -Available liquidity - -
createdAtString! - -Date-time of creation - -
- -### PeerEdge - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
nodePeer!
cursorString!
- -### PeersConnection - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
pageInfoPageInfo!
edges[PeerEdge!]!
- -### Quote - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Quote id - -
paymentPointerIdID! - -Id of the payment pointer under which this quote was created - -
receiverString! - -Payment pointer URL of the receiver - -
debitAmountAmount! - -Amount to send (fixed send) - -
receiveAmountAmount! - -Amount to receive (fixed receive) - -
maxPacketAmountUInt64! - -Maximum value per packet allowed on the possible routes - -
minExchangeRateFloat! - -Aggregate exchange rate the payment is guaranteed to meet - -
lowEstimatedExchangeRateFloat! - -Lower bound of probed exchange rate - -
highEstimatedExchangeRateFloat! - -Upper bound of probed exchange rate - -
createdAtString! - -Date-time of creation - -
expiresAtString! - -Date-time of expiration - -
- -### QuoteConnection - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
pageInfoPageInfo!
edges[QuoteEdge!]!
- -### QuoteEdge - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
nodeQuote!
cursorString!
- -### QuoteResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString
quoteQuote
- -### Receiver - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idString! - -Incoming payment URL - -
paymentPointerUrlString! - -Payment pointer URL under which the incoming payment was created - -
completedBoolean! - -Describes whether the incoming payment has completed receiving funds. - -
incomingAmountAmount - -The maximum amount that should be paid into the payment pointer under this incoming payment. - -
receivedAmountAmount! - -The total amount that has been paid into the payment pointer under this incoming payment. - -
expiresAtString - -Date-time of expiry. After this time, the incoming payment will accept further payments made to it. - -
metadataJSONObject - -Additional metadata associated with the incoming payment. - -
createdAtString! - -Date-time of creation - -
updatedAtString! - -Date-time of last update - -
- -### RevokePaymentPointerKeyMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
paymentPointerKeyPaymentPointerKey
- -### SetFeeResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
feeFee
- -### TransferMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
- -### TriggerPaymentPointerEventsMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
countInt - -Number of events triggered - -
- -### UpdatePaymentPointerMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
paymentPointerPaymentPointer
- -### UpdatePeerMutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!
peerPeer
- -### WebhookEvent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID! - -Event id - -
typeString! - -Type of event - -
dataJSONObject! - -Stringified JSON data - -
createdAtString! - -Date-time of creation - -
- -### WebhookEventsConnection - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
pageInfoPageInfo!
edges[WebhookEventsEdge!]!
- -### WebhookEventsEdge - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
nodeWebhookEvent!
cursorString!
- -## Inputs - -### AddAssetLiquidityInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
assetIdString! - -The id of the asset to add liquidity. - -
amountUInt64! - -Amount of liquidity to add. - -
idString! - -The id of the transfer. - -
idempotencyKeyString! - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### AddPeerLiquidityInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
peerIdString! - -The id of the peer to add liquidity. - -
amountUInt64! - -Amount of liquidity to add. - -
idString! - -The id of the transfer. - -
idempotencyKeyString! - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### AmountInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
valueUInt64!
assetCodeString! - -[ISO 4217 currency code](https://en.wikipedia.org/wiki/ISO_4217), e.g. `USD` - -
assetScaleUInt8! - -Difference in orders of magnitude between the standard unit of an asset and a corresponding fractional unit - -
- -### CreateAssetInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
codeString! - -[ISO 4217 currency code](https://en.wikipedia.org/wiki/ISO_4217), e.g. `USD` - -
scaleUInt8! - -Difference in orders of magnitude between the standard unit of an asset and a corresponding fractional unit - -
withdrawalThresholdUInt64 - -Minimum amount of liquidity that can be withdrawn from the asset - -
liquidityThresholdUInt64 - -Account Servicing Entity will be notified via a webhook event if liquidity falls below this value - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### CreateAssetLiquidityWithdrawalInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
assetIdString! - -The id of the asset to create the withdrawal for. - -
amountUInt64! - -Amount of withdrawal. - -
idString! - -The id of the withdrawal. - -
idempotencyKeyString! - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### CreateIncomingPaymentInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
paymentPointerIdString! - -Id of the payment pointer under which the incoming payment will be created - -
expiresAtString - -Expiration date-time - -
metadataJSONObject - -Additional metadata associated with the incoming payment. - -
incomingAmountAmountInput - -Maximum amount to be received - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### CreateOutgoingPaymentInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
paymentPointerIdString! - -Id of the payment pointer under which the outgoing payment will be created - -
quoteIdString! - -Id of the corresponding quote for that outgoing payment - -
metadataJSONObject - -Additional metadata associated with the outgoing payment. - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### CreatePaymentPointerInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
assetIdString! - -Asset of the payment pointer - -
urlString! - -Payment Pointer URL - -
publicNameString - -Public name associated with the payment pointer - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### CreatePaymentPointerKeyInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
paymentPointerIdString!
jwkJwkInput! - -Public key - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### CreatePaymentPointerWithdrawalInput - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
paymentPointerIdString! - -The id of the Open Payments payment pointer to create the withdrawal for. - -
idString! - -The id of the withdrawal. - -
idempotencyKeyString! - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### CreatePeerInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
maxPacketAmountUInt64 - -Maximum packet amount that the peer accepts - -
httpHttpInput! - -Peering connection details - -
assetIdString! - -Asset id of peering relationship - -
staticIlpAddressString! - -Peer's ILP address - -
nameString - -Peer's internal name - -
liquidityThresholdUInt64 - -Account Servicing Entity will be notified via a webhook event if peer liquidity falls below this value - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### CreatePeerLiquidityWithdrawalInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
peerIdString! - -The id of the peer to create the withdrawal for. - -
amountUInt64! - -Amount of withdrawal. - -
idString! - -The id of the withdrawal. - -
idempotencyKeyString! - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### CreateQuoteInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
paymentPointerIdString! - -Id of the payment pointer under which the quote will be created - -
debitAmountAmountInput - -Amount to send (fixed send) - -
receiveAmountAmountInput - -Amount to receive (fixed receive) - -
receiverString! - -Payment pointer URL of the receiver - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### CreateReceiverInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
paymentPointerUrlString! - -Receiving payment pointer URL - -
expiresAtString - -Expiration date-time - -
incomingAmountAmountInput - -Maximum amount to be received - -
metadataJSONObject - -Additional metadata associated with the incoming payment. - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### DeletePeerInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
idID!
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### DepositEventLiquidityInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
eventIdString! - -The id of the event to deposit into. - -
idempotencyKeyString! - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### FeeDetails - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
fixedUInt64! - -A flat fee - -
basisPointsInt! - -Basis points fee. Should be between 0 and 10000 (inclusive). 1 basis point = 0.01%, 100 basis points = 1%, 10000 basis points = 100% - -
- -### FilterString - - - - - - - - - - - - - - - - -
FieldTypeDescription
in[String!]!
- -### HttpIncomingInput - - - - - - - - - - - - - - - - -
FieldTypeDescription
authTokens[String!]! - -Array of auth tokens accepted by this Rafiki instance - -
- -### HttpInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
incomingHttpIncomingInput - -Incoming connection details - -
outgoingHttpOutgoingInput! - -Outgoing connection details - -
- -### HttpOutgoingInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
authTokenString! - -Auth token to present at the peering Rafiki instance - -
endpointString! - -Peer's connection endpoint - -
- -### JwkInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
kidString! - -Key id - -
xString! - -Base64 url-encoded public key. - -
algAlg! - -Cryptographic algorithm family used with the key. The only allowed value is `EdDSA`. - -
ktyKty! - -Key type. The only allowed value is `OKP`. - -
crvCrv! - -Curve that the key pair is derived from. The only allowed value is `Ed25519`. - -
- -### PaymentFilter - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
typeFilterString
paymentPointerIdFilterString
- -### PostLiquidityWithdrawalInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
withdrawalIdString! - -The id of the liquidity withdrawal to post. - -
idempotencyKeyString! - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### RevokePaymentPointerKeyInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
idString! - -Internal id of key - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### SetFeeInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
assetIdID! - -Asset id to add the fee to - -
typeFeeType! - -Type of fee (sending or receiving) - -
feeFeeDetails! - -Fee values - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### TriggerPaymentPointerEventsInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
limitInt! - -Maximum number of events being triggered (n). - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### UpdateAssetInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
idString! - -Asset id - -
withdrawalThresholdUInt64 - -New minimum amount of liquidity that can be withdrawn from the asset - -
liquidityThresholdUInt64 - -Account Servicing Entity will be notified via a webhook event if liquidity falls below this new value - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### UpdatePaymentPointerInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
idID! - -ID of payment pointer to update - -
publicNameString - -New public name for payment pointer - -
statusPaymentPointerStatus - -New status to set the payment pointer to - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### UpdatePeerInput - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
idString! - -Peer id - -
maxPacketAmountUInt64 - -New maximum packet amount that the peer accepts - -
httpHttpInput - -New peering connection details - -
staticIlpAddressString - -Peer's new ILP address - -
nameString - -Peer's new public name - -
liquidityThresholdUInt64 - -Account Servicing Entity will be notified via a webhook event if peer liquidity falls below this new value - -
idempotencyKeyString - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### VoidLiquidityWithdrawalInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
withdrawalIdString! - -The id of the liquidity withdrawal to void. - -
idempotencyKeyString! - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -### WebhookEventFilter - - - - - - - - - - - - - - - - -
FieldTypeDescription
typeFilterString
- -### WithdrawEventLiquidityInput - - - - - - - - - - - - - - - - - - - - - -
FieldTypeDescription
eventIdString! - -The id of the event to withdraw from. - -
idempotencyKeyString! - -Unique key to ensure duplicate or retried requests are processed only once. See [idempotence](https://en.wikipedia.org/wiki/Idempotence) - -
- -## Enums - -### Alg - - - - - - - - - - - - -
ValueDescription
EdDSA
- -### Crv - - - - - - - - - - - - -
ValueDescription
Ed25519
- -### FeeType - - - - - - - - - - - - - - - - -
ValueDescription
SENDING - -Sender pays the fees - -
RECEIVING - -Receiver pays the fees - -
- -### IncomingPaymentState - - - - - - - - - - - - - - - - - - - - - - - - -
ValueDescription
PENDING - -The payment has a state of PENDING when it is initially created. - -
PROCESSING - -As soon as payment has started (funds have cleared into the account) the state moves to PROCESSING - -
COMPLETED - -The payment is either auto-completed once the received amount equals the expected `incomingAmount`, or it is completed manually via an API call. - -
EXPIRED - -If the payment expires before it is completed then the state will move to EXPIRED and no further payments will be accepted. - -
- -### Kty - - - - - - - - - - - - -
ValueDescription
OKP
- -### LiquidityError - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ValueDescription
AlreadyPosted
AlreadyVoided
AmountZero
InsufficientBalance
InvalidId
TransferExists
UnknownAsset
UnknownIncomingPayment
UnknownPayment
UnknownPaymentPointer
UnknownPeer
UnknownTransfer
- -### OutgoingPaymentState - - - - - - - - - - - - - - - - - - - - - - - - -
ValueDescription
FUNDING - -Will transition to SENDING once payment funds are reserved - -
SENDING - -Paying, will transition to COMPLETED on success - -
COMPLETED - -Successful completion - -
FAILED - -Payment failed - -
- -### PaymentPointerStatus - - - - - - - - - - - - - - - - -
ValueDescription
INACTIVE - -Status after deactivating - -
ACTIVE - -Default status - -
- -### PaymentType - - - - - - - - - - - - - - - - -
ValueDescription
INCOMING
OUTGOING
- -## Scalars - -### Boolean - -The `Boolean` scalar type represents `true` or `false`. - -### Float - -The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). - -### ID - -The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID. - -### Int - -The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. - -### JSONObject - -### String - -The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. - -### UInt64 - -### UInt8 - -## Interfaces - -### BasePayment - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID!
paymentPointerIdID!
metadataJSONObject
createdAtString!
- -### Model - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
idID!
createdAtString!
- -### MutationResponse - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FieldArgumentTypeDescription
codeString!
successBoolean!
messageString!