SDK
SDK PHP v3.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

update #

Performs a partial content update on this object.


update(content, [options], [callback]) #

Arguments Type Description
content JSON Object Profile content
options JSON Object Optional parameters
callback function Optional callback handling the response

Options #

Option Type Description Default
queuable boolean Make this request queuable or not true

Return Value #

Returns the Profile object to allow chaining.


Callback Response #

Returns the updated version of this object.

Usage #

Copied to clipboard!
<?php
use Kuzzle\Security\Profile;
// ...
/*
  * @var $profile Profile
  */
$profileContent = [
  'policies' => [
    ['roleId' => 'myrole']
  ]
];
try {
  $profile->update($profileContent);
}
catch (ErrorException $e) {
}