List watermark templates
GET/social-media-posting/:locationId/watermarks
Retrieve a paginated list of watermark templates for a specific location. Each template exposes the connected accounts it applies to via accountIds. Use the Get Accounts endpoint to look up account IDs.
Request
Version stringrequired
API Version
Available options
v3locationId stringrequired
Location Id
limit string
Maximum number of records to return
skip string
Number of records to skip for pagination
name string
Search by template name
List of watermark templates
- application/json
- Schema
- Example (auto)
Schema
successbooleanrequired
Success or Failure
statusCodenumberrequired
Status Code
messagestringrequired
Message
resultsobject
Paginated list of watermark templates
{
"success": true,
"statusCode": 200,
"message": "Fetched Watermark Templates",
"results": {
"watermarks": [
{
"_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"
}
],
"meta": {
"count": 1,
"usingLegacy": false
}
}
}