REST API v4: PUT subprofile
A method to edit the properties of an existing subprofile. It is called using the following URL:
https://api.copernica.com/v4/subprofile/$id
The $id
needs to be replaced with the ID of the subprofile you want to
edit the properties of.
Available data
The following data can be placed in the message body of the HTTP PUT command:
- fields: Fields that the subprofile contains
- secret: The secret code that is associated with the subprofile
PHP example
The following example demonstrates how to use this method:
// dependencies
require_once('CopernicaRestAPI.php');
// change this into your access token
$api = new CopernicaRestAPI("your-access-token", 4);
// data to be sent to the api
$data = array(
"fields" => array(
'firstname' => 'John',
'lastname' => 'Doe',
'email' => 'johndoe@example.com'
),
'secret' => "geheimecode"
);
// do the call, and print result
print_r($api->put("subprofile/{$subprofileID}", $data));
The example above requires the CopernicaRestApi class.