Checking authentication...

Organizations

Access organization information and members

4 tools

Get Organizations

Read Idempotent

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

NameTypeRequiredDescription
verbosebooleanoptionalReturn 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

Get Organization

Read Idempotent

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

NameTypeRequiredDescription
org_idnumberrequiredOrganization ID
verbosebooleanoptionalReturn 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

Get Organization Members

Read Idempotent

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

NameTypeRequiredDescription
org_idnumberrequiredOrganization ID
admins_onlybooleanoptionalWhen true, returns only organization administrators (uses the dedicated admin endpoint). All other filter/search/pagination parameters are ignored.
member_typestringoptionalFilter by type
Values: employee, external, admin, regular, guest, premium
querystringoptionalSingle name search term. Use queries instead for multiple names.
queriesarrayoptionalArray of names to search for. Results are combined and deduplicated.
limitnumberoptionalMax results per query
offsetnumberoptionalPagination offset
sort_bystringoptionalSort field
Values: name, last_seen_on
sort_descbooleanoptionalDescending 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

Get Spaces On Organization

Read Idempotent

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

NameTypeRequiredDescription
org_idnumberrequiredOrganization ID
verbosebooleanoptionalReturn the full Podio response instead of concise summary
summary_onlybooleanoptionalReturn 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