I'm trying to tag envelopes with a brandID property per the docs, but the PHP API we're using doesn't appear to support it. The envelope class doesn't even contain a brandID property:
I'd rather not update the API code to include it (upgradability concerns). Is this a limitation of the PHP API we're using?
Here is the envelope class from APIService.php:
class Envelope {
public $TransactionID; // string
public $Asynchronous; // boolean
public $AccountId; // string
public $Documents; // ArrayOfDocument
public $Recipients; // ArrayOfRecipient
public $Tabs; // ArrayOfTab
public $Subject; // string
public $EmailBlurb; // string
public $SigningLocation; // SigningLocationCode
public $CustomFields; // ArrayOfCustomField
public $VaultingOptions; // VaultingOptions
public $AutoNavigation; // boolean
public $EnvelopeIdStamping; // boolean
public $AuthoritativeCopy; // boolean
public $Notification; // Notification
public $EnvelopeAttachment; // ArrayOfAttachment
public $EnforceSignerVisibility; // boolean
public $EnableWetSign; // boolean
public $AllowMarkup; // boolean
public $EventNotification; // EventNotification
}