Get a watermark template by ID
GET/social-media-posting/:locationId/watermarks/:templateId
Retrieve the full details of a specific watermark template, including its image URL, position, scale, opacity, padding, template name, and the connected accounts it applies to (accountIds). Use the Get Accounts endpoint to look up account IDs.
Request
Version stringrequired
API Version
Available options
v3locationId stringrequired
Location Id
templateId stringrequired
Watermark template ID
Watermark template details
- application/json
- Schema
- Example (auto)
Schema
successbooleanrequired
Success or Failure
statusCodenumberrequired
Status Code
messagestringrequired
Message
resultsobject
Watermark template
{
"success": true,
"statusCode": 200,
"message": "Fetched Watermark Template",
"results": {
"_id": "665f1bac78fda9b6c5f48012",
"watermarkImageUrl": "http://example.com/watermark.png",
"position": "top-left",
"scale": 0.5,
"opacity": 0.7,
"padding": true,
"templateName": "DefaultTemplate",
"locationId": "ve9EPM428h8vShlRW1KT",
"createdBy": "Lx1EI6YIgQYMQi0ytFXv",
"accountIds": [
"507f1f77bcf86cd799439011",
"507f1f77bcf86cd799439012"
],
"deleted": false,
"createdAt": "2024-07-24T10:21:00.123Z",
"updatedAt": "2024-07-24T10:21:00.123Z"
}
}