i am trying to get the data in api but its only showing me the file name not shoing thw data
Output should be like this
i am trying to get the data in api but its only showing me the file name not shoing thw data
Output should be like this
Hi @asadmjad,
The results of the call will depend on the accept header. Accept: application/octet-stream
returns the file. Whereas, Accept: application/json returns the metadata about the file.
If you want the file in the response body of the call you'll also want to add the query parameter dispostion=inline.
Altogether, it should look like this.