Downloading Audio

  1. Locate the audio_url field inside the answers array of the result

    
    {
          "id": "3c2cb535-de81-457e-ae5d-11d849500114",
          ...
          "answers": [
            {
              "id": "71b81b3c-c3af-4413-bce5-b824eec5f27e",
              "created_at": "2024-02-23T16:32:48+00:00",
              "value": null,
              "audio_url":"https://cdn.voiceform.com/app/6862ac40/audio/8OWpANRME.mp3"
    
  2. Call Download File endpoint to access the file stream

Downloading Uploaded Files

  1. Locate the url field inside the answer value array

    
    {
          "id": "3c2cb535-de81-457e-ae5d-21323gsdhsdk",
          ...
          "answers": [  
            {  
              "id": "a6c364e3-0e3f-4ec7-973f-2382t23t238",  
              "created_at": "2024-03-05T19:57:39+00:00",  
              "value": {  
                "type": "files",  
                "value": [  
                  {  
                    "url": "https://cdn.voiceform.com/app/6862ac40/files/8OWpANRME.jpg",  
                    "name": "cam-1709668636521.jpg",  
                    "type": "image/jpeg",  
                    "size": 51195  
                  },  
                  {  
                    "url": "https://cdn.voiceform.com/app/6862ac40/files/8OWpANRME.jpg",  
                    "name": "cam-1709668646954.jpg",  
                    "type": "image/jpeg",  
                    "size": 70039  
                  }  
                ], 
              },
    
  2. Call Download File endpoint to access the file stream