I'm trying to json_encode the following PHP array while following the bulk import custom field values example.
$values = 'AAA\nBBB\nCCC';
$data = array(
'FIELD_FCS' => $contextId,
'FIELD_IMPORT_VALUES' => $values,
'canned-script' => 'com.onresolve.scriptrunner.canned.jira.admin.BulkImportCustomFieldValues'
);
$data = 'scriptParams='.json_encode($data, JSON_HEX_AMP | JSON_HEX_APOS); //the options will be useful when I use real values
The $values is formatted to have each value delimited by a slash. This format is required to use the API. When I try to json_encode the $data array and send it to the API, it simply adds 1 dropdown option of AAA\nBBB\nCCC, instead of creating 3 separate options.
I'm not sure how to force it to create 3 values instead of just 1. I tried increasing and decreasing the number of slashes, but to no avail.
Nvm, I just realized that those are newline characters, not slashes, that delimit the values. But I did have to strip one of the slashes from the json_encoded result to make it work.
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.