Front-end of POSTing to local file storage

Troy,

Hey, I tried to put a little something together for you here so that I can convey the idea of what’s going on behind the scenes.

By the way I’m using the Live API model schema and simply filling in the name for the container, folder, file, etc.

First there is the container-level object (sports)

"container": [
    {
  "name": "Sports",
  "path": "",
  "metadata": [
    ""
  ],

Folder Object

“folder”: [
    {
      “name”: “Baseball”,
      “path”: “”,
      “metadata”: [
        “”
      ],
      “folder”: [
        “FolderRequest”
      ],

File object is done in the same manner:

“file”: [
        {
          “name”: “braves.jpg”,
          “path”: “”,
          “content_type”: “image”,
          “metadata”: [
            “”
          ]
        }]

Hope that this helps a bit man, enjoy your weekend!

  • Mark