Connect cesium ion to own S3 bucket with REST API

Hi @Shehzan_Mohammed,
Ok, so I have tried like this :

axios.post('https://api.cesium.com/v1/assets', {
      name: selectedFile.name,
      description: '',
      type: 'POINT_CLOUD',
      options: {
        position:[ 2.29, 48.85, 0.1],
        sourceType: srcType
      },
      from: {
        type:'S3',
        bucket: 'my',
        prefixes: ['myprefix'],
        credentials :{
          accessKey:'mykey',
          secretAccessKey:'mysecretkey'
        }
      }
    },{
      headers: { Authorization: `Bearer ${accessToken}` }
    })
    .then(response => assetCreated(response))
    .catch(function (error) {
      console.log(error);
    });

Now I get a 409 error.