NOTE: User must be logged in as admin to access this API
URL:api/tag/{tag}
Method: GET
Description : Get Tag Details.
Parameters:
| Parameter | Type | Optional/Required | Description |
| tag | integer | Required | tag id of the tag to be fetched. |
Response:
{
"success": true,
"data": {
"tag": {
"id": 1,
"name": "new tag",
"description": "This is new tag"
}
}
}