Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA
Skip to end of metadata
Go to start of metadata

Changes branding information about Quatrix. Check "data" example bellow.

Parameters 

 

Name TypeDescription

user_id

required

string

specified user id

data

required

object

changed branding information

cb

optional

function

callback function


Example

this.editIshare =  function(user_id, data, cb) {
  return _request({
    method: 'POST',
    url: '/user/edit_ishare/'+user_id,
    data: data,
    callback: cb
  });
};

 

Example Result

{
 bcc: ["john@smith.net", "bob@dylan.net"],
 email_footer: "good example of email footer",
 language: "en_GB"
}

 

 

  • No labels
Write a comment…
Quatrix JavaSctipt APIs QJA