get_fulfillment_center
Retrieve detailed information about a specific fulfillment center using its ID, enabling efficient management of e-commerce fulfillment operations via ShipBob API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
centerId | Yes | The ID of the fulfillment center to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"centerId": {
"description": "The ID of the fulfillment center to retrieve",
"type": "string"
}
},
"required": [
"centerId"
],
"type": "object"
}