Recipients
CRUD queries for your payment recipients
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?