Podio API Documentation
Organizations: Get organization members
Returns the members, both invited and active, of the given organization. This method is only available for organization administrators. For users only invited, only very limited information will be returned for the user and profile.
Usage
- PHP Client
-
PodioOrganizationMember.php
PodioOrganizationMember::get_for_org( $org_id );
- Ruby Gem
-
organization_member.rb
Podio::OrganizationMember.find_all_for_org( org_id, options = {} )
Parameters
- org_id*
- Required.
- limit
The limit on the number of results returned
- member_type
The type of members that should be returned. Possible values are:
- employee
- external
- admin
- regular
- guest
- premium
- offset
The offset to use when returning the list
Default value: 0- query
Any search term to match.
- sort_by
The sorting order of the results returned. Valid options are "name" and "last_seen_on".
Default value: name- sort_desc
True if the results should be sorted descending, false otherwise.
Default value: false
Response
[
{
"user": The user data of the member,
"profile": The profile of the member,
"employee": True if the member is an employee, false otherwise,
"role": The organization role of the user, if any, either "regular" or "admin",
"space_memberships": The number of regular spaces the user is member of in the organization
},
... (more members)
]
Sandbox
Try the operation "/org/{org_id}/member/"You can simulate the API request by filling out the arguments below, and press the submit button to see the response.
You need to be logged in to Podio to use the Sandbox. Login here