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!
/appendpoint does not require an increased trust level. It looks like you're missing quite a lot of data there (e.g. the fields you want to have in the app). Take a look at the request data here: developers.podio.com/doc/applications/add-new-app-22351 - domokun