get_return
Retrieve detailed information about a specific return by providing the return ID using the ShipBob API MCP Server. Simplify return management for e-commerce fulfillment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
returnId | Yes | The ID of the return to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"returnId": {
"description": "The ID of the return to retrieve",
"type": "string"
}
},
"required": [
"returnId"
],
"type": "object"
}