Hi Team,
I would like to know that instead of using the file id in the api get request can I use the filename as (xxxx.xls)
Β https://api.anaplan.com/1/3/workspaces/8a81b0945cdbe1ec015ce678a3f60051/models/F54A3C7D6CE54A0F82EE730DE0FD12B5/files/
Β
Thanks
Kandasamy
You can specify the import data source or export name in the URL path instead of the numeric ID, although you may need to be careful with certain characters that must be encoded (the tool you use to access the API may handle this).
Use application/octet-stream for the Accept header.
If the file is large then use the /2/0 API or the chunks endpoints instead.
It looks like you're missing the path component "/files", which should follow the model ID. Test using a numeric identifier first, then substitute the name for the numeric identifier.
Now you've got /1/4 as a version instead of /1/3 or /2/0. That's not a valid API version, hence the not found error.
1/4 is not a valid API version.
2/0 will require a different Authorization: header to 1/3 (see https://anaplanauthentication.docs.apiary.io/)
There was an error rendering this rich post.
Hi all, The Client ID and Client Secret are available, intended for uploading and downloading files. Could anyone advise how to use these credentials DIRECTLY to make API requests? Thank you!
I have A6 as the parent list and two sibling lists: A6.5 and A7. The A7 list includes an attribute that maps to A6.5. In the UX, the user will select A6.5 using a content selector, and the grid (dimensioned by A7) should display only the A7 items associated with that selected A6.5. Since the selector is a page context andβ¦