AI agents are everywhere. See what yours are doing →
curl --request POST \
--url https://api.osohq.com/api/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"actor_type": "<string>",
"actor_id": "<string>",
"action": "<string>",
"resource_type": "<string>",
"page_size": 10000
}
'{
"results": [
"<string>"
],
"next_page_token": "<string>"
}Fetches a list of resource IDs on which an actor can perform a particular action.
curl --request POST \
--url https://api.osohq.com/api/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"actor_type": "<string>",
"actor_id": "<string>",
"action": "<string>",
"resource_type": "<string>",
"page_size": 10000
}
'{
"results": [
"<string>"
],
"next_page_token": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://www.osohq.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Requires an API key to access.
Required. Page size for pagination. Must be at least 10,000. Results will be paginated and a next_page_token will be included in the response if more results are available. Ignored when page_token is provided, since the page size is determined by the original request.
x >= 10000Show child attributes
Page token for fetching subsequent pages of results. Use the next_page_token from a previous response. When provided, page_size is ignored.
Was this page helpful?