retrieve_multiple_collaborators
Fetch a paginated list of collaborators in a Storyblok space, allowing you to manage and view user data efficiently. Specify page and per_page parameters for precise control over the results.
Instructions
Retrieves a paginated list of collaborators (users) in a specified Storyblok space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
per_page | No |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"title": "Page"
},
"per_page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 25,
"title": "Per Page"
}
},
"title": "retrieve_multiple_collaboratorsArguments",
"type": "object"
}