Delegate Subaccount
Mutation to share your subaccount
Example
mutation delegateSubaccount {
delegateSubaccount(input: { emailTo: "[email protected]", subaccount: "subaccount_name", permission: "read" }) {
string
}
}
Response
{
"data": {
"delegateSubaccount": {
"boolean": true
}
}
}
Arguments
input
(DelegateSubaccountInput!)
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
type DelegateSubaccountInput {
clientMutationId: String
emailTo: String!
subaccount: String!
permission: String!
}