This is listed in DocuSign's SOAP API guide, both the PDF format and the Online version.
You need to set the BrandId
property in your envelope where the value is set to a valid brandId of one your branding profiles you've created.
Using the C# examples from the SOAP API guide, it would look something like this:
// Create the envelope content
DocuSignWeb.Envelope envelope = new DocuSignWeb.Envelope();
envelope.Subject = "Subject";
envelope.EmailBlurb = "Email content";
envelope.Recipients = new DocuSignWeb.Recipient[] { recipient };
envelope.AccountId = accountId;
envelope.BrandId = brandId; // where brandId is a valid api brand id
You can find out what your brand ids are either through the Console or through the API.
To see through the Console:
- Login, click you Profile icon and go to the
Preferences
-> Branding
, then click Edit on one of your brands and go to the Info
page. There you'll see the API Brand Id value.
To retrieve through the SOAP API: