Returns a Category with the given id.
URL : /api/v{:apiVersion}/categories/:id
URL Parameters : id=[integer]
Method : GET
Authorization : Bearer Token
Code : 200 OK
Content Example :
{
"id": 1,
"name": "Phone"
}
Code : 404 NOT FOUND
Content :
{
"errors": [
{
"code": "NotFoundError",
"description": "Category not found for parameters {id=111}."
}
]
}