I'm using the Blackboard-Web-Services-PHP-Library, and when I make a call like the following (as per the example in a previous question here: Blackboard SOAP web service php), BB's web service creates one column for each key/value pair in the columns array, and returns an array of the new column ids. None of these new cols have any of the desired characteristics. Any suggestions?
$params = array();
$params['courseId'] = '_174_1';
$params['columns'] = array(
'columnName' => 'testing',
'possible' => "100.0",
"scorable"=> "true",
"showStatsToStudent"=> "true",
"visible"=> "true",
"visibleInBook"=> "true",
);
$id = $blackboard->Gradebook( "saveColumns", $params );
The print_r($id) output:
Array
(
[0] => _441_1
[1] => _442_1
[2] => _443_1
[3] => _444_1
[4] => _445_1
[5] => _446_1
)