Basic error | podio-php

Comments

2 comments

  • Andreas Haugstrup Pedersen

    App auth counts as a light user on the app and works under the same restrictions as light users. If I recall correctly that means app auth can only delete items created by app auth. Maybe if the "Don't let members edit items in this app" setting is disabled they can delete more but I don't remember.

    You can always check rights by getting the item and looking at the rights property. Or you can use the can method. E.g.

    $item = PodioItem::get(123);
    if ($item->can('delete')) {
      print "I can delete this";
    }
    
    0
    Comment actions Permalink
  • Vincent Poirier

    I am not the "Organization Admin", I can't seem to be able to validate that setting.
    The only workaround I see is authenticating through a user, and that's not too clean in my opinion.

    0
    Comment actions Permalink

Please sign in to leave a comment.

Powered by Zendesk