API Docs
Delegate Subaccount

Mutation to share your subaccount

Example

mutation delegateSubaccount {
  delegateSubaccount(input: { emailTo: "[email protected]", subaccount: "product_demo", permission: "read" }) {
    string
  }
}

Response

{
  "data": {
    "deleteSubaccount": {
      "boolean": true
    }
  }
}

Arguments

input (DeleteSubaccountInput!)

The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.

Type

DeleteSubaccountPayload

The output of our deleteSubaccount mutation.