I finally was able to generate a User Access token so I can call the API.
I call the following API endpoint using the User Access Token
https://api.box.com/2.0/search?query=myfile
Authorization: Bearer I have a single PDF file in my Box.com account named "myfile.pdf"
When I call the API endpoint using postman I get back an HTTP 200 with the following.
{
"total_count": 0,
"entries": [],
"limit": 30,
"offset": 0
}
I am getting an HTTP 200 so I know the API is being called OK but why isn't the file being listed?