Wemob
API reference

Files

Read and write the files inside a project from your own code.

Every Wemob project is a collection of files. These endpoints let you list them, read their contents, make changes, and add new ones. Edits you make here show up in the Studio just like edits you'd make yourself in the Code tab.

List files#

MethodPathReturns
GET/v2/apps/{appId}/files/{platform}An array of file objects with paths and contents

Create a file#

MethodPathBody
POST/v2/apps/{appId}/files{ file_path, content, file_type }

Update a file#

MethodPathBody
PUT/v2/apps/{appId}/files/{fileId}{ content }
Tip
File updates are live — the preview in the Studio will refresh with the new content within a moment. No deploy needed.

Delete a file#

MethodPathReturns
DELETE/v2/apps/{appId}/files/{fileId}A success confirmation
Last updated · April 11, 2026