get_customer
Retrieve customer details from the ShipStation API using a specific customer ID. Simplify customer data management by accessing structured customer information efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customerId | Yes | Customer ID to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"customerId": {
"description": "Customer ID to retrieve",
"type": "number"
}
},
"required": [
"customerId"
],
"type": "object"
}