I am trying to create an item with relationship field with multiple references like this.
$collection = new PodioCollection(array(
new PodioItem(array('item_id' => 425989858)),
new PodioItem(array('item_id' => 425987845))
));
$response = PodioItem::create("16748745", array('fields' => array(
"130415123" => "+13334445552",
"130415337" => $collection
)));
While creating item it shows error PodioBadRequestError: "Invalid value null (null): must be Range". I have only these two fields in this app.
I get the same error with single reference also.
$response = PodioItem::create("16748745", array('fields' => array(
"130415123" => "+13334445552",
"130415337" => array('item_id' => 425989858)
)));
Any help?