Planable · Schema

Post_Media Request

Social MediaContent CollaborationApproval WorkflowsSocial Media ManagementContent PublishingMarketing

Properties

Name Type Description
workspaceId string
mediaUrls array Array of 1 to 20 public image/video URLs to upload to the workspace media library. Each file max ~100MB.
View JSON Schema on GitHub

JSON Schema

post_media-request.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://planable.io/schemas/post_media-request.json",
  "title": "Post_Media Request",
  "type": "object",
  "properties": {
    "workspaceId": {
      "type": "string",
      "minLength": 1
    },
    "mediaUrls": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "minItems": 1,
      "maxItems": 20,
      "description": "Array of 1 to 20 public image/video URLs to upload to the workspace media library. Each file max ~100MB."
    }
  },
  "required": [
    "workspaceId",
    "mediaUrls"
  ]
}