Recipients
CRUD queries for your payment recipients
We are legally obliged to collect the actual recipient details. Please, do not send us an intermediate organisation details such as exchanges, banks, gateways, etc.
Please, send us the final funds recipient. If sending to self then please provide your own details. See the DOCS in Playground for other recipient details options.
recipientandrecipientsqueries - read your address book.createRecipient- creates a new record in the Flash Payments database.updateRecipient- updates an existing recipient.deleteRecipient- deletes an existing recipient.
Query a single recipient
const bodyJSON = {
variables: {
input: "6b04c62ec0bf606bf216ae21",
},
query: `
query ($input: ID) {
recipient(id: $input) {
accountIdType currency country email
}
}`,
};query($input: ID) {
recipient(id: $input) {
accountIdType
currency
country
email
# there are many other properties
}
}{
"input": "6b04c62ec0bf606bf216ae21"
}Query multiple recipients
Create a recipient
Create an Individual recipient
Create a Company recipient
Update recipient
Delete recipient
Last updated
Was this helpful?