I'm trying to use curl to update a custom field which I created using the add on Project Team for Jira Server. My issue is that I get a 403, even tho I'm using my admin credentials and gave my user permissions to edit custom fields.
Thanks
This is my code:
$username = 'username';
$password = 'password';
$url = 'http:/localhost:8080/rest/stonikbyte-project-team-api/1.0/custom-field-value/username/fieldkey';$data = array("value" => "Wurstverkauf");
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_PUT, true);curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$response = curl_exec($ch);
echo $response;
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.