Get tags by ids
POST/social-media-posting/:locationId/tags/details
Retrieve specific tags by their IDs
Request
Version stringrequired
API Version
Available options
v3locationId stringrequired
Location Id
- application/json
- Body
- Example (auto)
Bodyrequired
tagIdsstring[]required
Array of Tag Ids
{
"tagIds": [
"65fbdcfecc884f07e645ea8b"
]
}
Successful response
- application/json
- Schema
- Example (auto)
Schema
successbooleanrequired
Success or Failure
statusCodenumberrequired
Status Code
messagestringrequired
Message
resultsobject
Requested Results
{
"success": true,
"statusCode": 201,
"message": "Fetched Tags by Tag IDs",
"results": {
"tags": [
{
"tag": "Primary Tag",
"locationId": "Lx1EI6YIgQYMQi0ytFXv",
"_id": "Lx1EI6YIgQYMQi0ytFXv",
"createdBy": "Lx1EI6YIgQYMQi0ytFXv",
"deleted": false,
"createdAt": "2023-08-02T00:00:00.000Z",
"updatedAt": "2023-08-02T00:00:00.000Z"
}
],
"count": 3
}
}