0

I am fetching BuiltClass from my built app through SDK and I get list of built file objects in it like e.g: List<BuiltFileObject>

Below listed properties I get from BuiltFileObject: app_user_object_uid, content_type,file_size,filename, tags[], uid ,url

Now if I upload any file then I get same BuiltFileObject with all properties and I inserted that file object in List<BuiltFileObject> and saved BuiltClass. But in response I don't get list of BuiltFile Objects.

Am I missing anything in save call?

Rohit
  • 5,631
  • 4
  • 31
  • 59
nikhilgohil11
  • 1,185
  • 15
  • 26

1 Answers1

1

You need to save the upload before your save your BuiltClass. See the documentation for Uploads.

der_michael
  • 3,151
  • 1
  • 24
  • 43