Organizations
Access organization information and members
4 tools
Get Organizations
POST /v1/tools/podio/getOrganizations
List all organizations the authenticated user belongs to. Returns org_id, name, url, status, type, and user_limit for each org by default. Use verbose for the full Podio response.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
verbose | boolean | optional | Return the full Podio response instead of concise summary |
Request
curl -X POST https://api.syncello.io/v1/tools/podio/getOrganizations \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Response
{
"total": 2,
"items": [
{
"org_id": 1234567,
"name": "Acme Corp",
"url": "https://podio.com/acmecorp",
"status": "active",
"type": "premium",
"user_limit": 25
},
{
"org_id": 2345678,
"name": "Globex Inc",
"url": "https://podio.com/globexinc",
"status": "active",
"type": "sponsored",
"user_limit": 5
}
]
} Try It
Try it
Sign in to execute this tool
Sign InGet Organization
POST /v1/tools/podio/getOrganization
Get organization details by ID. Returns org_id, name, url, status, type, and user_limit by default. Use verbose for the full Podio response.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
org_id | number | required | Organization ID |
verbose | boolean | optional | Return the full Podio response instead of concise summary |
Request
curl -X POST https://api.syncello.io/v1/tools/podio/getOrganization \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
-d '{
"org_id": "123"
}'Response
{
"org_id": 8471023,
"name": "Acme Corp",
"url": "https://podio.com/acme-corp",
"status": "active",
"type": "premium",
"user_limit": 25
} Try It
Try it
Sign in to execute this tool
Sign InGet Organization Members
POST /v1/tools/podio/getOrganizationMembers
List members of an organization (admin only). Returns invited and active members. Filter by member_type: "employee" for internal, "external" for outside users. Supports searching for multiple names at once via the queries parameter (results are deduplicated). Set admins_only to get only administrators who can manage billing, members, and org settings.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
org_id | number | required | Organization ID |
admins_only | boolean | optional | When true, returns only organization administrators (uses the dedicated admin endpoint). All other filter/search/pagination parameters are ignored. |
member_type | string | optional | Filter by type Values: employee, external, admin, regular, guest, premium |
query | string | optional | Single name search term. Use queries instead for multiple names. |
queries | array | optional | Array of names to search for. Results are combined and deduplicated. |
limit | number | optional | Max results per query |
offset | number | optional | Pagination offset |
sort_by | string | optional | Sort field Values: name, last_seen_on |
sort_desc | boolean | optional | Descending order |
Request
curl -X POST https://api.syncello.io/v1/tools/podio/getOrganizationMembers \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
-d '{
"org_id": "123"
}'Response
[
{
"admin": true,
"employee": true,
"role": "admin",
"role_type": "regular",
"tier": null,
"space_memberships": 2,
"profile": {
"profile_id": 4455667,
"name": "Jane Doe",
"mail": [
"jane@example.com"
],
"type": "user"
},
"user": {
"user_id": 1122334,
"mail": "jane@example.com",
"status": "active"
}
}
] Try It
Try it
Sign in to execute this tool
Sign InGet Spaces On Organization
POST /v1/tools/podio/getSpacesOnOrganization
List all workspaces in an organization. Returns space_id, name, org_id, url, privacy, and type for each workspace by default. Use verbose (or summary_only: false) for the full Podio response.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
org_id | number | required | Organization ID |
verbose | boolean | optional | Return the full Podio response instead of concise summary |
summary_only | boolean | optional | Return a concise summary (default: true). Set to false for the full Podio response — equivalent to verbose: true. |
Request
curl -X POST https://api.syncello.io/v1/tools/podio/getSpacesOnOrganization \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
-d '{
"org_id": "123"
}'Response
{
"total": 12,
"items": [
{
"space_id": 7482910,
"name": "Sales",
"org_id": 8471023,
"url": "https://podio.com/acme-corp/sales",
"privacy": "closed",
"type": "regular"
},
{
"space_id": 7482911,
"name": "Operations",
"org_id": 8471023,
"url": "https://podio.com/acme-corp/operations",
"privacy": "open",
"type": "regular"
}
]
} Try It
Try it
Sign in to execute this tool
Sign In