fetch_space_roles
Retrieve multiple space roles for a specific Storyblok space by searching or specifying IDs, enabling efficient role management within your content ecosystem.
Instructions
Retrieves multiple space roles for a given space.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| by_ids | No | ||
| search | No |
Input Schema (JSON Schema)
{
"properties": {
"by_ids": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "By Ids"
},
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Search"
}
},
"title": "fetch_space_rolesArguments",
"type": "object"
}