REST API v3: GET subprofile fields
To request the fields from a subprofile you can send an HTTP GET request to the following URL:
https://api.copernica.com/v3/subprofile/$id/fields?access_token=xxxx
The $id
should be replaced with the numerical identifier of the subprofile
you're requesting the fields of.
Returned fields
This method returns the fields of a subprofile.
PHP Example
The following PHP script demonstrates how to use the API method.
// dependencies
require_once('copernica_rest_api.php');
// change this into your access token
$api = new CopernicaRestAPI("your-access-token", 3);
// do the call, and print result
print_r($api->get("subprofile/{$subprofileID}/fields"));
The example above requires the CopernicaRestApi class.