retrieve_field_plugins
Facilitates retrieval of field plugins across space, org, or partner contexts with customizable filters for user-specific plugins, pagination, and search by name or slug.
Instructions
Retrieves multiple field plugins (field types) across different contexts.
Args:
context (str): 'space', 'org', or 'partner'
only_mine (int): 1 = only plugins created by authenticated user
page (int): pagination page number
per_page (int): plugins per page (max 100)
search (str): search filter for plugin name or slug
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | space | |
only_mine | No | ||
page | No | ||
per_page | No | ||
search | No |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"default": "space",
"title": "Context",
"type": "string"
},
"only_mine": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"title": "Only Mine"
},
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"title": "Page"
},
"per_page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 25,
"title": "Per Page"
},
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Search"
}
},
"title": "retrieve_field_pluginsArguments",
"type": "object"
}