I am trying to create an app in Podio via API on my laravel web app, however whenever I call the PodioApp::create() function it returns with PodioBadRequestError in Podio.php line 289 exception. Now i'm not sure if I will need to request for a increased trust level on my API keys from support but here is my code:
$timeclock_app = PodioApp::create(array( 'space_id' => $workspace->space_id,
'type' => 'standard',
'name' => 'Timeclocks',
'item_name' => 'Timeclock',
'icon' => '270.png',
));
return dd($timeclock_app);
Thanks in advance!