Skip to main content

Get Item

Overview

{
"name": "Get Item",
"route": "GET /customer/item/:id",
"description": "Find item that belongs to a customer.",
"parameters": [
{
"name": "id",
"type": "string",
"description": "Item ID",
"required": true
}
],
"body": null,
"response": {
"success": {
"code": 200,
"description": "Returns the item object"
},
"error": [
{
"code": 401,
"description": "Unauthorized - User is not authenticated"
},
{
"code": 403,
"description": "Forbidden - User does not have permission to access this resource"
},
{
"code": 404,
"description": "Not Found - Item not found or doesn't belong to the customer"
}
]
},
"notes": [
"This endpoint requires authentication (InternalGuard and AuthorizationGuard)."
]
}