Podio API Documentation

OAuth authorization: Get scope

GET /oauth/scope

Returns the scope of the client, i.e. what references the client has access to and with what permissions (read/write/delete/all).

Response Example 1, read/write scope on a space: [{
"ref_type": "space",
"ref_id": 42,
"permissions": ["read", "write"],
"ref_data": {
"name": "Some Space Name",
... more space data here
}
}]
Example 2, all scope on global:
[{
"ref_type": null,
"ref_id": null,
"permissions": ["all"]
}]

Sandbox

Try the operation "/oauth/scope"

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