GetReturnReasons
Retrieve and organize a list of return reasons with sorting and pagination options to manage returns efficiently in Medusa MCP Server.
Instructions
Retrieve a list of return reasons. The return reasons can be sorted or paginated.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | ||
limit | No | ||
offset | No | ||
order | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fields": {
"type": "string"
},
"limit": {
"type": "number"
},
"offset": {
"type": "number"
},
"order": {
"type": "string"
}
},
"type": "object"
}