Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

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

 

Example Result

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

 

 

Quatrix JavaSctipt APIs QJA